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 a42a6b4 commit d2bfbf6Copy full SHA for d2bfbf6
2 files changed
.github/workflows/main.yml
@@ -18,9 +18,13 @@ jobs:
18
with:
19
python-version: ${{ matrix.python-version }}
20
check-latest: true
21
+ - name: Install task to make use of Taskfile.yml
22
+ run: |
23
+ sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
24
+ task --version
25
- name: Install dependencies
26
run: |
- task dependencies
27
+ task dependencies-with-pip
28
pip install -U coveralls
29
- name: Run tests with pytest
30
Taskfile.yml
@@ -10,6 +10,12 @@ tasks:
10
- poetry lock
11
- poetry install --extras dev
12
silent: true
13
+ dependencies-with-pip:
14
+ desc: Installs all dependencies using pip only
15
+ cmds:
16
+ - pip install --upgrade pip
17
+ - pip install .[dev]
+ silent: true
tests:
desc: Runs the tests
cmds:
0 commit comments