Merge pull request #259 from perillo/improve-github-workflows

workflows: improve the jobs configuration
pull/2/head
Chris Boesch 1 year ago committed by GitHub
commit a703faa8e4

@ -6,6 +6,9 @@ on:
defaults:
run:
shell: bash
strategy:
fail-fast: false
timeout-minutes: 30
jobs:
compat:
@ -28,7 +31,6 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- uses: actions/checkout@v2

@ -9,6 +9,9 @@ on:
defaults:
run:
shell: bash
strategy:
fail-fast: false
timeout-minutes: 30
jobs:
build:
@ -16,9 +19,9 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v2
with:

Loading…
Cancel
Save