Enable job insertion on both transactions and top level pool #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |