Skip to content

Bump actions/checkout from 2 to 4 #6

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #6

Workflow file for this run

name: ci
on:
push:
branches: [debug, main, release]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
toolchain: [nightly]
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
override: true
- name: Build
run: cargo build --verbose
- name: Build with all features
run: cargo build --all-features --verbose
- name: Test
run: cargo test --verbose
- name: Test with all features
run: cargo test --all-features --verbose