Skip to content

Adding testing to actions #1

Adding testing to actions

Adding testing to actions #1

Workflow file for this run

name: Python package
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install
run: make install
- name: Verify formatting and tests
run: make precommit