Skip to content

update

update #76

Workflow file for this run

name: End to end test
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v3
with:
cache: "pip"
- run: pip install -r tests/requirements.txt
- name: Release build
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: End to end test
run: sh tests/run_all.sh