Skip to content

function hardcoded

function hardcoded #63

Workflow file for this run

name: Continuous Integration Master
on:
push:
branches-ignore:
- main
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Coverage
run: |
make coverage