Skip to content

Avoid failing with no-key in tests #47

Avoid failing with no-key in tests

Avoid failing with no-key in tests #47

name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: fmtcheck
run: make fmtcheck
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: Upgrade pip and virtualenv to latest
run: pip install --upgrade pip virtualenv
- name: Test with pytest
run: make test