Skip to content

ci: add build and test workflow #1

ci: add build and test workflow

ci: add build and test workflow #1

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose