Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ on:
branches: [main]
pull_request:
branches: [main]
permissions:
Comment thread
thejchap marked this conversation as resolved.
contents: read
Comment thread
thejchap marked this conversation as resolved.
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v6
- run: rustup show
Expand All @@ -17,6 +22,9 @@ jobs:

clippy:
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v6
- run: rustup show
Expand All @@ -25,6 +33,9 @@ jobs:

cli-docs:
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v6
- run: rustup show
Expand Down Expand Up @@ -55,6 +66,9 @@ jobs:

test:
runs-on: ${{ matrix.os }}
permissions:
contents: read
actions: write
strategy:
fail-fast: false
matrix:
Expand Down
Loading