Skip to content

Feature/manage installed versions #22

Feature/manage installed versions

Feature/manage installed versions #22

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
cargo_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all