Skip to content

Fix Implementation script error message #149

Fix Implementation script error message

Fix Implementation script error message #149

Workflow file for this run

# Run Continuous Integration on every push
name: continuous_integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run the test suite
run: |
cd $GITHUB_WORKSPACE
pip3 install pip 'setuptools<51' wheel tox
tox
- name: Upload coverage report to Codacy
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}