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