Skip to content

README now has a badge for CI workflow. #8

README now has a badge for CI workflow.

README now has a badge for CI workflow. #8

name: Continuous Integration
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: make venv
- name: Run Static Analysis & Tests
run: make
- name: Run Coverage
run: make coverage