Skip to content

Redeploy on push

Redeploy on push #13

Workflow file for this run

name: πŸ§ͺ Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-vertex:
runs-on: ubuntu-latest
steps:
- name: πŸ” Checkout
uses: actions/checkout@v4
- name: πŸ§ͺ Run tests
run: cargo test -- --test-threads=1
- name: βœ… Clippy
run: cargo clippy -- -D warnings
- name: πŸ“¦ Build
run: cargo build --release