-
-
Notifications
You must be signed in to change notification settings - Fork 41
49 lines (45 loc) · 1.38 KB
/
future-proof.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Future proof tests
on:
schedule:
- cron: '23 1 * * 0' # Sun *-*-* 01:23:00 UTC
permissions:
contents: read
env:
RUST_BACKTRACE: full
jobs:
nix-flake-latest:
name: Flake package following latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Flake update
# https://github.com/actions/checkout/tree/v3.3.0#push-a-commit-using-the-built-in-token
run: |
git config user.name github-actions
git config user.email [email protected]
nix flake update --commit-lock-file
- name: Flake check
run: nix flake check --no-update-lock-file --show-trace
- name: Flake build
run: nix build --no-update-lock-file --show-trace --print-build-logs
outdated:
name: Outdated
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install cargo-outdated
uses: dtolnay/install@cargo-outdated
- name: cargo-outdated
run: |
rm Cargo.lock # Ignore trivially updatable compatible versions.
cargo outdated --workspace --exit-code 1