Skip to content

Commit 7898991

Browse files
committed
Cleanup CI config files
Add Rust 1.80 to the list of tested versions
1 parent 2a28e46 commit 7898991

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/audit.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ on:
44
paths:
55
- 'Cargo.toml'
66
- '**/Cargo.toml'
7-
# Bors related branches
7+
- 'Cargo.lock'
88
push:
99
branches:
1010
- master
11-
- staging
12-
- trying
1311
schedule:
1412
- cron: '0 0 * * *'
13+
workflow_dispatch:
1514
permissions: read-all
1615

1716
jobs:

.github/workflows/ci.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ on:
66
push:
77
branches:
88
- master
9-
- staging
10-
- trying
119
# Test once per week: Saturday at 00:00
1210
schedule:
1311
- cron: "0 0 * * 6"
12+
workflow_dispatch:
1413
permissions: read-all
1514

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

0 commit comments

Comments
 (0)