Files
tui-website/.gitea/workflows/test.yaml
Yves Biener 5227a33d0a
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m0s
Release Zig Application / Release zig project (release) Successful in 1m27s
mod: bump zig to master version; bump zterm dependency
Use progress example for initial tui-website test application.
2025-10-28 19:57:10 +01:00

28 lines
644 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 .
- name: Spell checking
uses: crate-ci/typos@v1.25.0
with:
config: ./.typos-config
- name: Run tests
run: zig build test