ops: fix kcov integration #193
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 | |
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: kcov-out | |
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 }} |