Handle VersionLabel missing from API response gracefully #85
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Python 3.8 | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.12 | |
architecture: x64 | |
- name: Update pip | |
run: pip install --upgrade pip | |
- name: Install linters | |
run: pip install black flake8 | |
- name: check code style with black | |
run: black --check **/*.py | |
- name: flake8 tests | |
run: flake8 **/*.py |