Skip to content

ci: add initial ci (#3) #4

ci: add initial ci (#3)

ci: add initial ci (#3) #4

Workflow file for this run

name: Build and test
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose