Merge pull request #8 from ai4curation/batch5 #23
This file contains hidden or 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
# Built from: | |
# https://docs.github.com/en/actions/guides/building-and-testing-python | |
--- | |
name: Build and test | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: [main] | |
pull_request: | |
env: | |
FORCE_COLOR: "1" # Make tools pretty. | |
#permissions: {} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
fail-fast: false | |
steps: | |
# https://github.com/actions/checkout | |
- name: Check out repository | |
uses: actions/checkout@v4.2.2 | |
with: | |
persist-credentials: false | |
# https://github.com/astral-sh/setup-uv | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
python-version: ${{ matrix.python-version }} | |
enable-cache: true | |
cache-dependency-glob: "uv.lock" | |
# https://github.com/actions/setup-python | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5.6.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install just | |
run: | | |
uv tool install rust-just | |
- name: Install project | |
run: uv sync --dev | |
- name: Validate data | |
run: just validate-all | |
- name: Run test suite | |
run: just test |