Skip to content

trying to deal with bug can't find version #65

trying to deal with bug can't find version

trying to deal with bug can't find version #65

Workflow file for this run

# This workflow will install Python dependencies, run tests, run linting, and test building docs

Check failure on line 1 in .github/workflows/codestyle.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/codestyle.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build
name: Codestyle and Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
python-version: [3.10]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pip setuptools wheel --upgrade
python -m pip install -e '.[dev]'
- name: Lint with Black
run: |
black --check --diff roentgen
- name: flake8
run: |
flake8 --count roentgen
- name: isort
run: |
isort roentgen -c