Skip to content

add some testing configuration #2

add some testing configuration

add some testing configuration #2

Workflow file for this run

name: test on push
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: cargo build --verbose --release
- name: run tests
run: cargo test --verbose