We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875afc1 commit 447c944Copy full SHA for 447c944
1 file changed
.github/workflows/check.yml
@@ -4,11 +4,21 @@ jobs:
4
runs-on: ubuntu-latest
5
steps:
6
- uses: actions/checkout@v2
7
- - uses: actions/setup-python@v2
+
8
+ - name: Read Python version
9
+ id: python-version
10
+ run: echo "version=$(cat .python-version | tr -d '\n')" >> $GITHUB_OUTPUT
11
12
+ - uses: actions/setup-python@v4
13
with:
- python-version: '3.13'
14
+ python-version: ${{ steps.python-version.outputs.version }}
15
16
- uses: snok/install-poetry@v1
17
18
- run: make install
19
20
- run: make lint
21
22
- run: make types
23
24
- run: make test
0 commit comments