Skip to content

Add test and lint workflows #6

Add test and lint workflows

Add test and lint workflows #6

Workflow file for this run

name: Run lint and tests
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
test-containerized:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build test image
run: make test-image
- name: Run lint in container
run: make lint-containerized
- name: Run tests in container
run: make test-containerized
- name: Coverage threshold
run: make coverage-check