Skip to content

Merge branch 'main' of https://github.com/mvodya/passes-rs #6

Merge branch 'main' of https://github.com/mvodya/passes-rs

Merge branch 'main' of https://github.com/mvodya/passes-rs #6

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
name: Build library
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: build library
run: cargo build --verbose
- name: test library
run: cargo test --verbose