Skip to content

Add tags infos (#5) #31

Add tags infos (#5)

Add tags infos (#5) #31

Workflow file for this run

name: build
on: # cf. https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout 🛎️
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 pylint -r requirements.txt
- name: Statically checking code 🔎
run: pylint *.py