Skip to content

Use temporary, explicit CI github actions #80

Use temporary, explicit CI github actions

Use temporary, explicit CI github actions #80

Workflow file for this run

name: CI
on: push
jobs:
test:
# TODO: move this into a shared workflow, https://github.com/MITLibraries/.github/tree/main/.github/workflows
name: Run tests and report coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Create virtual environment
run: |
make install
- name: Run tests and make coverage report
run: |
make test
make coveralls
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fail-on-error: false
lint:
# TODO: move this into a shared workflow, https://github.com/MITLibraries/.github/tree/main/.github/workflows
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Create virtual environment
run: |
make install
- name: Lint
run: make lint