Skip to content

Enable job insertion on both transactions and top level pool #23

Enable job insertion on both transactions and top level pool

Enable job insertion on both transactions and top level pool #23

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install the latest version of rye
uses: eifinger/setup-rye@v3
- name: Rye setup
run: rye sync
- name: Format check
run: rye fmt --check
- name: Lint
run: rye lint
- name: Type check
run: make type-check
- name: Build
run: rye build
- name: Test
run: RIVER_USE_DOCKER=true rye test