Skip to content

test(e2e): add e2e runner and harness #53

test(e2e): add e2e runner and harness

test(e2e): add e2e runner and harness #53

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
types: [opened, synchronize]
paths-ignore:
- "*.md"
- ".vscode/*"
- Justfile
- zls.json
push:
branches:
- main
paths-ignore:
- "*.md"
- ".vscode/*"
- Justfile
- zls.json
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
ZIG_VERSION: 0.13.0
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Install tooling
- uses: extractions/setup-just@v2
with:
just-version: ${{ env.JUST_VERSION }}
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}
# Run checks
- run: just check
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Install tooling
- uses: extractions/setup-just@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}
# Run tests
- run: just test