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

68 lines
1.7 KiB
YAML
Raw Normal View History

2023-03-29 15:33:22 -04: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 10:22:25 -05:00
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
2023-03-29 15:33:22 -04:00
jobs:
test:
name: Test
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest", "macos-14"]
2023-03-29 15:33:22 -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
uses: actions/checkout@v4
2023-03-29 15:33:22 -04:00
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- uses: Swatinem/rust-cache@v2
2024-01-03 09:27:59 -05:00
- name: Build
run: cargo test --workspace --no-run
2023-03-29 15:33:22 -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"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
2023-08-11 14:29:06 -04:00
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Update dependencues
run: cargo update
2024-01-03 09:27:59 -05:00
- name: Build
run: cargo test --workspace --no-run
2023-08-11 14:29:06 -04:00
- name: Default features
2024-01-03 09:27:59 -05:00
run: cargo test --workspace
2023-08-11 14:29:06 -04:00
- name: All features
2024-01-03 09:27:59 -05:00
run: cargo test --workspace --all-features
2023-08-11 14:29:06 -04:00
- name: No-default features
2024-01-03 09:27:59 -05:00
run: cargo test --workspace --no-default-features