Bump docker/setup-buildx-action from 2.0.0 to 3.0.0 #517
Workflow file for this run
This file contains 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: code-checker | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
static-check-lint: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.6, 3.7, 3.8] | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Requirements | |
run: | | |
pip3 install --upgrade pip | |
pip3 install pyflakes | |
pip3 install black | |
pip3 install isort | |
- name: Detect errors with pyflakes | |
run: pyflakes TwitchChannelPointsMiner | |
- name: Lint with black | |
run: black TwitchChannelPointsMiner --check --diff | |
- name: Lint with isort | |
run: isort TwitchChannelPointsMiner --profile black --check --diff |