Skip to content

.github: Add Scorecard workflow (#6) #35

.github: Add Scorecard workflow (#6)

.github: Add Scorecard workflow (#6) #35

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/[email protected]
- 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