Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
schedule:
- cron: '0 0 * * 0' # Once per week

permissions: {}

jobs:
security-audit:
name: "Security audit"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:

- name: "Set up Rust"
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false

- name: "Build"
run: cargo build
Expand All @@ -53,6 +55,7 @@ jobs:

- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false
components: clippy, rustfmt

- name: "Check fmt"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ jobs:

- name: "Set up Rust"
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false

- name: "Build Android library"
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-swift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:

- name: "Set up Rust"
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false

- name: "Build Swift package"
run: bash ./build-xcframework.sh
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/zizmor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:

- name: "Set up Rust"
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache: false

- name: "Install zizmor"
run: cargo install zizmor --locked --version 1.6.0
Expand Down
Loading