Skip to content

.github: Add Scorecard workflow #34

.github: Add Scorecard workflow

.github: Add Scorecard workflow #34

Workflow file for this run

name: Python package tests
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pre-commit/action@v3.0.0
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test
run: tox