Skip to content

Commit

Permalink
improve comment clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
admeeer committed Oct 11, 2023
1 parent e26b059 commit 820858b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
# rely on predefined GitHub actions to setup our python environment
steps:
- uses: actions/checkout@v2
# setup step
# setup python environment
- name: setup
uses: actions/setup-python@v2
with:
python-version: 3.9
# install step
# install prerequisite packages for testing
- name: install
run: |
python -m pip install --upgrade pip
pip install pytest
# test step
# run tests using pytest
- name: test
run: |
pytest tests/

0 comments on commit 820858b

Please sign in to comment.