We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c95545 commit 786d60aCopy full SHA for 786d60a
.github/workflows/CI.yml
@@ -9,17 +9,17 @@ on:
9
workflow_dispatch:
10
11
jobs:
12
- build:
+ test:
13
runs-on: ubuntu-latest
14
- steps:
15
- - uses: actions/checkout@v5
16
- - uses: actions/setup-python@v5
17
- with:
18
- python-version: '3.11'
19
- - name: Install dependencies
20
- run: |
21
- python -m pip install --upgrade pip
22
- pip install -e .[test]
23
- - name: Test with pytest
24
25
- pytest metoppy/tests --cov=metoppy --cov-report=xml
+ steps:
+ - uses: actions/checkout@v5
+ - uses: actions/setup-python@v5
+ with:
+ python-version: '3.11'
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -e .[test]
+ - name: Test with pytest
+ pytest metoppy/tests --cov=metoppy --cov-report=xml
0 commit comments