We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8269240 commit b52219fCopy full SHA for b52219f
.github/workflows/tests.yml
@@ -1,9 +1,15 @@
1
-name: Code checks
+name: unit tests
2
3
-on: [push]
+on:
4
+ push:
5
+ branches:
6
+ - "**"
7
+ tags:
8
+ - "!**"
9
+ workflow_call:
10
11
env:
- POETRY_VERSION: 1.8.2
12
+ POETRY_VERSION: 1.8
13
14
jobs:
15
Tests:
@@ -35,7 +41,7 @@ jobs:
35
41
with:
36
42
path: .venv
37
43
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
38
-
44
+
39
45
- name: Ensure cache is healthy
40
46
if: steps.cache.outputs.cache-hit == 'true'
47
shell: bash
@@ -49,4 +55,3 @@ jobs:
49
55
50
56
- name: Test the library
51
57
run: poetry task check-all
52
0 commit comments