Skip to content

Update package name

Update package name #8

Workflow file for this run

name: python-ci
on:
push:
branches:
- '**'
tags:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Setup dependencies
run: |
pip3 install poetry
make install
- name: Lint
run: make lint
- name: PyTests
run: make test
- name: Upload coverage to Codecov
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make coverage