Skip to content

Add a GitHub action to run the test suite #2

Add a GitHub action to run the test suite

Add a GitHub action to run the test suite #2

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Test
run: cargo test