Skip to content

Bump actions/checkout from 3 to 4 #37

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #37

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
sanity-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Rust toolchain
run: |
TOOLCHAIN_VERSION=$(grep 'channel =' rust-toolchain.toml | awk -F'"' '{print $2}')
rustup toolchain install "$TOOLCHAIN_VERSION"
- name: Run tests
run: cargo test --all-features