Skip to content

Update caproto startup and testing scripts #40

Update caproto startup and testing scripts

Update caproto startup and testing scripts #40

Workflow file for this run

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
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- 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 coverage report
uses: codecov/[email protected]