Skip to content

Change configuration files #11

Change configuration files

Change configuration files #11

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
test_gui:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Test with pytest
run: pytest GHEtoolGUI/test_gui --cov=./ --cov-report=xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos