diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 3645b40..f9b92b5 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -35,8 +35,6 @@ jobs: uses: actions/configure-pages@v3 - name: Setup Zig uses: goto-bus-stop/setup-zig@v2 - with: - version: 0.10.1 - name: Generate docs run: zig build - name: Upload artifact diff --git a/.github/workflows/tests-dev.yml b/.github/workflows/tests-dev.yml new file mode 100644 index 0000000..5515c71 --- /dev/null +++ b/.github/workflows/tests-dev.yml @@ -0,0 +1,16 @@ +name: Tests dev + +on: + # Triggers the workflow on push or pull request events but only for the "master" branch + push: + branches: ["master"] + pull_request: + branches: ["master"] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: goto-bus-stop/setup-zig@v2 + - run: zig build test