Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jiacai2050 committed Jan 4, 2025
1 parent cc8f8cc commit af06a9d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
- "**.zig"
- ".github/**"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
examples:
timeout-minutes: 10
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ permissions:
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true


jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion book-src/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[Zig cookbook](https://github.com/zigcc/zig-cookbook) is a collection of simple Zig programs that demonstrate good practices to accomplish common programming tasks.

> - Main branch tracks Zig 0.13.0 and master, and ensured on Linux and macOS via GitHub actions.
> - Main branch tracks Zig 0.13.0 and master, and are tested on Linux and macOS via GitHub actions.
> - Zig 0.11.0 support can be found in [here](https://github.com/zigcc/zig-cookbook/tree/0.11.0).
# How to use
Expand Down

0 comments on commit af06a9d

Please sign in to comment.