typos/.github/workflows/rust-next.yml

63 lines
1.5 KiB
YAML
Raw Normal View History

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
COLUMNS: 130
2023-03-29 15:33:22 -04:00
2021-07-07 16:38:16 -04:00
jobs:
test:
name: Test
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
rust: ["stable", "beta"]
include:
- os: ubuntu-latest
rust: "nightly"
continue-on-error: ${{ matrix.rust != 'stable' }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
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
- uses: Swatinem/rust-cache@v2
2021-07-07 16:38:16 -04:00
- name: Default features
run: cargo test --workspace
- name: All features
run: cargo test --workspace --all-features
- name: No-default features
run: cargo test --workspace --no-default-features
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
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
- uses: Swatinem/rust-cache@v2
2023-08-11 14:29:06 -04:00
- name: Update dependencues
run: cargo update
- name: Default features
2024-03-04 10:33:41 -05:00
run: cargo test --workspace
2023-08-11 14:29:06 -04:00
- name: All features
2024-03-04 10:33:41 -05:00
run: cargo test --workspace --all-features
2023-08-11 14:29:06 -04:00
- name: No-default features
2024-03-04 10:33:41 -05:00
run: cargo test --workspace --no-default-features