Skip to content

ci: Run build and test in GHA #1

ci: Run build and test in GHA

ci: Run build and test in GHA #1

Workflow file for this run

name: 'CI jobs'
on:
push:
jobs:
buildtest:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v4'
- name: 'Build'
run: cargo build --verbose
- name: 'Run test'
run: cargo test --verbose