Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
  • Loading branch information
jsign committed May 4, 2024
1 parent 1763ed9 commit 0c86213
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Zig
uses: korandoru/setup-zig@v1
with:
zig-version: 0.11.0
- name: Build
run: zig build
- uses: actions/checkout@v3
- name: Set up Zig
uses: korandoru/setup-zig@v1
with:
zig-version: 0.12.0
- name: Build
run: zig build

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Zig
uses: korandoru/setup-zig@v1
with:
zig-version: 0.11.0
- name: Lint
run: zig fmt --check src/*.zig
- uses: actions/checkout@v3
- name: Set up Zig
uses: korandoru/setup-zig@v1
with:
zig-version: 0.12.0
- name: Lint
run: zig fmt --check src/*.zig

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Zig
uses: korandoru/setup-zig@v1
with:
zig-version: 0.11.0
- name: Test
run: zig build test
- uses: actions/checkout@v3
- name: Set up Zig
uses: korandoru/setup-zig@v1
with:
zig-version: 0.12.0
- name: Test
run: zig build test

0 comments on commit 0c86213

Please sign in to comment.