summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Lusk <luskjh@gmail.com>2026-05-25 20:26:07 -0400
committerJoshua Lusk <luskjh@gmail.com>2026-05-25 20:26:07 -0400
commitbcb98ccd1dec308eecd4052ed0d1387053749a5f (patch)
treee3fceaf5187a24d70dbd22fc172da28b4dae9d4e
parent03993e314ca2eefc8784d0349b8a55a0450a05f1 (diff)
fix ci workflow location
-rw-r--r--.github/workflows/ci.yaml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
new file mode 100644
index 0000000..88e0711
--- /dev/null
+++ b/.github/workflows/ci.yaml
@@ -0,0 +1,21 @@
+name: CI
+
+on:
+ push:
+ branches: [main]
+ pull_request:
+ branches: [main]
+
+jobs:
+ checks:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v6
+ - uses: actions/setup-python@v6
+ with:
+ python-version-file: ".python-version"
+ - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
+ with:
+ enable-cache: true
+ - run: echo "${{ secrets.VAULT_PASS }}" > .vault_pass
+ - run: pre-commit.sh