2023-03-29 14:33:22 -05:00
|
|
|
name: rust-next
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '1 1 1 * *'
|
|
|
|
|
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
CLICOLOR: 1
|
|
|
|
|
2024-01-18 09:22:25 -06:00
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-03-29 14:33:22 -05:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-01-31 12:07:12 -06:00
|
|
|
os: ["ubuntu-latest", "windows-latest", "macos-latest", "macos-14"]
|
2023-03-29 14:33:22 -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 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-03-29 14:33:22 -05:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
- 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"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-01 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-08-11 13:29:06 -05:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
2024-03-28 09:57:23 -05:00
|
|
|
- uses: taiki-e/install-action@cargo-hack
|
2023-08-11 13:29:06 -05:00
|
|
|
- name: Update dependencues
|
|
|
|
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
|