Skip to content

ci(cog): fix from latest tag #2

ci(cog): fix from latest tag

ci(cog): fix from latest tag #2

Workflow file for this run

on:
pull_request:
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: moonrepo/setup-rust@v1
with:
cache: false
components: rustfmt
- run: cargo fmt --all --check
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: moonrepo/setup-rust@v1
with:
cache: false
components: clippy
- run: cargo clippy --workspace --all-targets
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
# Windows latest is currently failing with "unresolved external symbol"
os: [ubuntu-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-nextest
cache: false # Runs out of disk space
- uses: moonrepo/setup-toolchain@v0
with:
moon-version: latest
- uses: moonrepo/build-wasm-plugin@v0
- run: cargo nextest run --no-default-features