Skip to content

CI

CI #6

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
path: ~/.cargo
- name: Build
run: cargo build --release && ls -lh target/*
- name: Build tests
run: cargo build --tests --benches
- name: Run tests
run: cargo test --all-targets