-
Notifications
You must be signed in to change notification settings - Fork 181
39 lines (37 loc) · 1.04 KB
/
Copy pathmain.yml
File metadata and controls
39 lines (37 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: PyCodeQualityAnalysis
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
PreflightChecks:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
# checkout repository
- name: Checkout repository
uses: actions/checkout@v3
# setup specific python version
- name: Setup Python v${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# install & configure poetry
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.4.1
virtualenvs-create: true
virtualenvs-in-project: true
# install dependencies
- name: Install dependencies
run: poetry install --no-interaction --no-ansi --without docs,hooks,sast
# run preflight checks
- name: Preflight checks with tox
run: |
source .venv/bin/activate
tox