test #240
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
"on": [push, pull_request] | |
permissions: | |
contents: read | |
env: | |
ZIG_VERSION: 0.13.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 | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: ${{ env.ZIG_VERSION }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
xterm xfonts-base | |
- name: Install kcov | |
run: | | |
sudo apt-get install -y kcov | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
- name: Start xvfb | |
run: | | |
Xvfb -screen 0 80x24x24 \ | |
-display :99 & | |
- name: Generate coverage | |
run: | | |
xterm -display :99 -u8 -geometry \ | |
80x24+0+0 -e \ | |
"zig build coverage --summary all" | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
file: kcov-out/kcov-merged/cobertura.xml | |
verbose: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
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, test] | |
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 }} |