Skip to content

Add initial CI setup #3

Add initial CI setup

Add initial CI setup #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
rust-version: [stable, 1.67.1]
steps:
- uses: actions/checkout@v4
- run: cargo +${{matrix.rust-version}} build --workspace --verbose
- run: cargo +${{matrix.rust-version}} test --workspace --verbose