Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

request counters #75

Closed
wants to merge 13 commits into from
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- pre-rel-*
env:
CARGO_TERM_COLOR: always
rust_stable: 1.76.0

jobs:
release:
Expand All @@ -24,7 +25,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.71.0
toolchain: ${{ env.rust_stable }}
components: clippy, rustfmt

- uses: Swatinem/rust-cache@v2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
rust_stable: 1.76.0

jobs:
test:
Expand All @@ -27,7 +28,7 @@ jobs:

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.71.0
toolchain: ${{ env.rust_stable }}
components: clippy, rustfmt

- uses: Swatinem/rust-cache@v2
Expand Down
Loading