Skip to content

ci: change rules for when to run actions (#17) #8

ci: change rules for when to run actions (#17)

ci: change rules for when to run actions (#17) #8

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run tests
run: "cargo test"