Skip to content

Update README.md-fix description mistake #43

Update README.md-fix description mistake

Update README.md-fix description mistake #43

Workflow file for this run

name: Python CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
pip install poetry
make install
- name: Run linter and pytest
run: |
make check
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3.2.0
if: github.ref_name == 'main'
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true