Skip to content

refactor: set bench prints only show on debug #18

refactor: set bench prints only show on debug

refactor: set bench prints only show on debug #18

Workflow file for this run

---
name: "pre-release"
on:
push:
branches:
- "main"
jobs:
pre-release:
name: "Pre Release"
runs-on: "ubuntu-latest"
steps:
# ...
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Run Clippy
run: cargo clippy --fix --allow-dirty --allow-staged --release --verbose
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"