Skip to content

Update actions/checkout action to v3 #192

Update actions/checkout action to v3

Update actions/checkout action to v3 #192

Workflow file for this run

name: pr
on: pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
rust: [stable]
steps:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Build and test
run: |
cargo build --verbose
cargo test --verbose