2021-07-07 16:38:16 -04:00
|
|
|
name: rust-next
|
2023-03-29 15:33:22 -04:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-07-07 16:38:16 -04:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '3 3 3 * *'
|
2023-03-29 15:33:22 -04:00
|
|
|
|
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
CLICOLOR: 1
|
2024-02-07 16:53:09 -05:00
|
|
|
COLUMNS: 130
|
2023-03-29 15:33:22 -04:00
|
|
|
|
2024-01-18 10:22:25 -05:00
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-07-07 16:38:16 -04:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-01-31 13:07:12 -05:00
|
|
|
os: ["ubuntu-latest", "windows-latest", "macos-latest", "macos-14"]
|
2021-07-07 16:38:16 -04:00
|
|
|
rust: ["stable", "beta"]
|
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
|
|
|
rust: "nightly"
|
|
|
|
continue-on-error: ${{ matrix.rust != 'stable' }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-30 23:30:16 -04:00
|
|
|
uses: actions/checkout@v4
|
2021-07-07 16:38:16 -04:00
|
|
|
- name: Install Rust
|
2023-03-29 15:33:22 -04:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2021-07-07 16:38:16 -04:00
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
2024-01-03 09:29:34 -05:00
|
|
|
components: rustfmt
|
2022-12-01 12:54:48 -05:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2024-03-28 10:57:23 -04:00
|
|
|
- uses: taiki-e/install-action@cargo-hack
|
2024-01-03 09:27:59 -05:00
|
|
|
- name: Build
|
|
|
|
run: cargo test --workspace --no-run
|
2024-03-28 10:57:23 -04:00
|
|
|
- name: Test
|
|
|
|
run: cargo hack test --feature-powerset --workspace
|
2023-08-11 14:29:06 -04:00
|
|
|
latest:
|
|
|
|
name: "Check latest dependencies"
|
2021-07-07 16:38:16 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-30 23:30:16 -04:00
|
|
|
uses: actions/checkout@v4
|
2021-07-07 16:38:16 -04:00
|
|
|
- name: Install Rust
|
2023-08-11 14:29:06 -04:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2021-07-07 16:38:16 -04:00
|
|
|
with:
|
2023-08-11 14:29:06 -04:00
|
|
|
toolchain: stable
|
2024-01-03 09:29:34 -05:00
|
|
|
components: rustfmt
|
2022-12-01 12:54:48 -05:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2024-03-28 10:57:23 -04:00
|
|
|
- uses: taiki-e/install-action@cargo-hack
|
2024-06-02 01:08:33 -04:00
|
|
|
- name: Update dependencies
|
2023-08-11 14:29:06 -04:00
|
|
|
run: cargo update
|
2024-01-03 09:27:59 -05:00
|
|
|
- name: Build
|
|
|
|
run: cargo test --workspace --no-run
|
2024-03-28 10:57:23 -04:00
|
|
|
- name: Test
|
|
|
|
run: cargo hack test --feature-powerset --workspace
|