Skip to content

Update actions/checkout digest to d632683 #117

Update actions/checkout digest to d632683

Update actions/checkout digest to d632683 #117

Workflow file for this run

#
# Configuration for GitHub-based CI, based on the stock GitHub Rust config.
#
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check-style:
runs-on: ubuntu-latest
steps:
# actions/checkout@v2
- uses: actions/checkout@8eb1f6a495037164bea451156472f35fdd6bafc0
- uses: actions-rs/toolchain@88dc2356392166efad76775c878094f4e83ff746
with:
toolchain: stable
default: false
components: rustfmt
- name: Check style
run: cargo fmt -- --check
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
steps:
# actions/checkout@v2
- uses: actions/checkout@8eb1f6a495037164bea451156472f35fdd6bafc0
- name: Build
run: cargo build --tests --verbose
- name: Run tests
run: cargo test --verbose