feat: add weekly average #828
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: | |
# only build each push to develop and master, other branches are built through pull requests | |
branches: [develop, master] | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
run-lint: | |
description: 'Run lint job' | |
required: false | |
default: true | |
type: boolean | |
run-static-check: | |
description: 'Run static-check job' | |
required: false | |
default: true | |
type: boolean | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.inputs.run-lint == 'true' || github.event_name == 'push' }} | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '>=3.6' | |
- name: Run black | |
uses: psf/black@stable | |
static-check: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.inputs.run-static-check == 'true' || github.event_name == 'push' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Pyflakes | |
run: | | |
pip3 install --upgrade pip | |
pip3 install pyflakes | |
- name: Detect errors with pyflakes | |
run: pyflakes . |