Skip to content

chore: remove print statements #199

chore: remove print statements

chore: remove print statements #199

Workflow file for this run

name: Rust
on:
# push:
# branches: ["master"]
push:
branches:
- "**"
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose