Skip to content

Merge pull request #355 from moka-rs/fix-ci-2023-12-12-v011 #861

Merge pull request #355 from moka-rs/fix-ci-2023-12-12-v011

Merge pull request #355 from moka-rs/fix-ci-2023-12-12-v011 #861

Workflow file for this run

name: Skeptic and Trybuild
on:
push:
paths-ignore:
- '.devcontainer/**'
- '.gitpod.yml'
- '.vscode/**'
schedule:
# Run against the last commit on the default branch on Friday at 9pm (UTC?)
- cron: '0 21 * * 5'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
steps:
- name: Checkout Moka
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- name: cargo clean
uses: actions-rs/cargo@v1
with:
command: clean
- name: Run tests (no features)
uses: actions-rs/cargo@v1
with:
command: test
args: --release
env:
RUSTFLAGS: '--cfg skeptic'
- name: Run tests (release, sync and future)
uses: actions-rs/cargo@v1
with:
command: test
args: --release --features 'sync, future'
env:
RUSTFLAGS: '--cfg skeptic'
- name: Run tests (sync and future, without atomic64 and quanta)
uses: actions-rs/cargo@v1
with:
command: test
args: --release --no-default-features --features 'sync, future'
env:
RUSTFLAGS: '--cfg skeptic'
- name: Run compile error tests (sync and future features, trybuild)
uses: actions-rs/cargo@v1
if: ${{ matrix.rust == 'stable' }}
with:
command: test
args: ui_trybuild --release --features 'sync, future'
env:
RUSTFLAGS: '--cfg trybuild'