refactor: drop mutex locks #245
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 kcov | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y kcov | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
- name: Generate coverage | |
run: | | |
xvfb-run 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 }} |