feat: Improve flights.*
dataset reproducibility
#854
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
node-version: 20 | |
- uses: astral-sh/setup-uv@v4 | |
with: | |
version: ">=0.5.0" | |
enable-cache: true | |
- name: Format toml | |
run: uvx taplo fmt --check --diff | |
- name: Format and lint (python) | |
run: | | |
uvx ruff check | |
uvx ruff format --check | |
- name: Install Node dependencies | |
run: npm ci | |
- run: npm run build |