Skip to content

Handle VersionLabel missing from API response gracefully #85

Handle VersionLabel missing from API response gracefully

Handle VersionLabel missing from API response gracefully #85

Workflow file for this run

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