Skip to content

show how you can benchmark multiple build profiles #28

show how you can benchmark multiple build profiles

show how you can benchmark multiple build profiles #28

Workflow file for this run

name: Release
on:
push:
branch:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: test
run: cargo test
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
if: startsWith(github.ref, 'refs/tags/')
- name: build
run: cargo build --release
- uses: softprops/action-gh-release@v1
with:
files: target/release/zr