-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (41 loc) · 1.36 KB
/
python-package.yml
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
40
41
42
43
44
45
46
# This workflow will execute the steps mentioned in the README in order to see if the project can be configured correctly
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
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 Poetry
run: |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
- name: Setup Poetry in current shell
run: |
source $HOME/.poetry/env
- name: Configure Poetry for creation of a Python virtual environment within the project root
run: |
$HOME/.poetry/bin/poetry config virtualenvs.in-project true
- name: Install dependencies
run: |
$HOME/.poetry/bin/poetry install
- name: Activate virtual environment
run: |
source .venv/bin/activate
- name: Format with black
run: |
.venv/bin/black main.py
- name: Execute script
run: |
.venv/bin/python main.py