Skip to content

add build and test workflow #1

add build and test workflow

add build and test workflow #1

Workflow file for this run

name: Build and test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build binary
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -- --test-threads=1