Skip to content

chore: Replace worker-build with it's individual steps #4

chore: Replace worker-build with it's individual steps

chore: Replace worker-build with it's individual steps #4

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: extractions/setup-just@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: just build
- name: Test
run: cargo test