build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.0 #283
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
branches-ignore: | |
- 'feature/latest' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Requirements | |
run: | | |
pip install wheel | |
pip install -qr requirements.txt | |
pip freeze | |
pip check | |
- name: Run Make | |
run: make | |
- name: Publish Code Coverage | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: coverage xml | |
coverageLocations: | | |
${{github.workspace}}/coverage.xml:coverage.py | |
- name: Build | |
run: make build |