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 d06699c commit 284cfafCopy full SHA for 284cfaf
.github/workflows/cowsay.yaml
@@ -11,11 +11,15 @@ jobs:
11
python-version: ["3.8", "3.9", "3.10", "3.11"]
12
13
steps:
14
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
15
- name: Set up Python ${{ matrix.python-version }}
16
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
17
with:
18
python-version: ${{ matrix.python-version }}
19
+ - name: Install dependencies
20
+ run: |
21
+ python -m pip install --upgrade pip
22
+ pip install pytest
23
- name: Test with Pytest
24
run: |
25
pytest
0 commit comments