Files
zterm/.gitea/workflows/test.yaml
Yves Biener a8e138deb7
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 15s
action: bump zig installation version
2025-06-24 20:27:07 +02:00

28 lines
663 B
YAML

name: Zig Project Action
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
run:
name: Lint, Spell-check and test zig project
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup zig installation
uses: mlugg/setup-zig@v2
with:
version: master
- name: Lint check
run: zig fmt --check --exclude src/test .
- name: Spell checking
uses: crate-ci/typos@v1.25.0
with:
config: ./.typos-config
- name: Run tests
run: zig build test