-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (32 loc) · 831 Bytes
/
test.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
name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.9]
poetry-version: [1.5.0]
steps:
- uses: actions/checkout@v3
- uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
# - uses: actions/cache@v3
# with:
# path: |
# ~/.cache/pypoetry/artifacts
# ~/.cache/pypoetry/cache
# key: ${{ runner.os }}-poetry
- name: Install dependencies
run: poetry install
- name: Test
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
run: make cover