Skip to content

build: add test names #184

build: add test names

build: add test names #184

Workflow file for this run

---
name: CI
"on": [push, pull_request]
permissions:
contents: read
env:
ZIG_VERSION: 0.12.0
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}
- name: Build
run: zig build
- name: Test
run: zig build test --summary all
coverage:
name: Test coverage
runs-on: ubuntu-latest
if: "!startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}
- name: Install kcov
run: |
sudo apt-get update
sudo apt-get install -y \
--no-install-recommends \
--allow-unauthenticated \
kcov
- name: Generate coverage
run: zig build coverage --summary all
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
directory: zig-out/coverage/kcov-merged
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
lint:
name: Format
runs-on: ubuntu-latest
if: "!startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
- run: zig fmt --check .
release:
needs: [build]
permissions:
contents: write
if: github.repository_owner == 'charlesrocket' && startsWith(github.ref, 'refs/tags/')
uses: ./.github/workflows/cd.yml
with:
tag_name: ${{ github.ref_name }}
zig_version: ${{ needs.build.outputs.zig_version }}