Skip to content

Update GitHub Actions #296

Update GitHub Actions

Update GitHub Actions #296

Workflow file for this run

name: Python package
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test and lint
run: |
tox