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

[pull] master from jonasbb:master #69

Merged
merged 7 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Cleanup CI config files
Add Rust 1.80 to the list of tested versions
  • Loading branch information
jonasbb committed Sep 12, 2024
commit 7898991fd4bcd39f45995aec916d2cc3a57952c3
5 changes: 2 additions & 3 deletions .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ on:
paths:
- 'Cargo.toml'
- '**/Cargo.toml'
# Bors related branches
- 'Cargo.lock'
push:
branches:
- master
- staging
- trying
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions: read-all

jobs:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ on:
push:
branches:
- master
- staging
- trying
# Test once per week: Saturday at 00:00
schedule:
- cron: "0 0 * * 6"
workflow_dispatch:
permissions: read-all

jobs:
Expand Down Expand Up @@ -61,7 +60,7 @@ jobs:
# It is good to test more than the MSRV and stable since sometimes
# breakage occurs in intermediate versions.
# IMPORTANT: Synchronize the MSRV with the Cargo.toml values.
rust: ["1.67", "1.70", "1.75", "stable", "beta", "nightly"]
rust: ["1.67", "1.70", "1.75", "1.80", "stable", "beta", "nightly"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down