Skip to content

workflow

workflow #12

name: Rust build&test ubuntu
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build
run: cargo build -vv
- name: Run tests
run: cargo test -vv