fix lint errors from e75be6c
#50
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: | |
workflow_dispatch: | |
pull_request: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
FORCE_COLOR: 3 | |
jobs: | |
pre-commit: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --hook-stage manual --all-files | |
- name: Run PyLint | |
run: | | |
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json" | |
pipx run nox -s pylint | |
checks: | |
# pull requests are a duplicate of a branch push if within the same repo. | |
if: | |
github.event_name != 'pull_request' || | |
github.event.pull_request.head.repo.full_name != github.repository | |
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} | |
runs-on: ${{ matrix.runs-on }} | |
needs: [pre-commit] | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
# runs-on: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: [ubuntu-latest] | |
# include: | |
# - python-version: pypy-3.10 | |
# runs-on: ubuntu-latest | |
env: | |
TZ: America/New_York | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Set env vars | |
run: | | |
export REPOSITORY_NAME=${GITHUB_REPOSITORY#*/} # just the repo, as opposed to org/repo | |
echo "REPOSITORY_NAME=${REPOSITORY_NAME}" >> $GITHUB_ENV | |
export PYTHONVER=$(echo ${{ matrix.python-version }} | sed 's/\.//g') | |
echo "PYTHONVER=${PYTHONVER}" >> $GITHUB_ENV | |
export DATETIME_STRING=$(date +%Y%m%d%H%M%S) | |
echo "DATETIME_STRING=${DATETIME_STRING}" >> $GITHUB_ENV | |
- name: Install package | |
run: | | |
set -vxeuo pipefail | |
python -m pip install .[test] | |
- name: Test package | |
run: >- | |
python -m pytest -ra --cov --cov-report=xml --cov-report=term | |
--durations=20 -m "(not hardware) and (not tiled)" -s -vv | |
- name: Upload test artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{env.REPOSITORY_NAME}}-py${{env.PYTHONVER}}-${{env.DATETIME_STRING}} | |
path: /tmp/srx-caproto-iocs/ | |
retention-days: 14 | |
- name: Upload coverage report | |
uses: codecov/[email protected] |