Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermichels committed May 16, 2024
1 parent 78c614d commit ccad16c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions docs/tutorial/github-actions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,24 +97,25 @@ The repository can be found here `https://github.com/cybergis/team-software-dev-
python-version: [ 3.12.3 ]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
run: |
pip install pytest pytest-cov
pytest --cov-report=term --cov=mycybergis -s test
coverage report
#. **More Actions!**

There are a wide variety of actions to help you maintain working and well-formatted code. Explore `the Github Actions Marketplace to see the options <https://github.com/marketplace>`_.

0 comments on commit ccad16c

Please sign in to comment.