Skip to content

Fix CI workflow and add steps to run tests #5

Fix CI workflow and add steps to run tests

Fix CI workflow and add steps to run tests #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
max-parallel: 4
matrix:
# python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
python-version: ['3.13']
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
id: setup-uv
with:
version: "latest"
python-version: ${{ matrix.python-version }}
- name: Set up virtual environment
run: |
uv venv
source .venv/bin/activate
- name: Install dependencies
run: |
pip install -e .[dev]
- run: make lint
- run: black --check fhir/resources/