Skip to content

Have build workflows run on all pushes/pr to main #10

Have build workflows run on all pushes/pr to main

Have build workflows run on all pushes/pr to main #10

Workflow file for this run

name: build api
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: rustup toolchain install stable --profile minimal
- uses: extractions/setup-just@v2
- name: build
run: just build-api