Skip to content

Ubuntu only

Ubuntu only #28

Workflow file for this run

name: ci
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os:
- ubuntu
# - macos
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- run: rustup update stable && rustup default stable
- run: cargo build --verbose
- run: cargo test --verbose