Skip to content

Merge branch 'develop' of github.com:tomcatmanager/tomcatmanager into… #275

Merge branch 'develop' of github.com:tomcatmanager/tomcatmanager into…

Merge branch 'develop' of github.com:tomcatmanager/tomcatmanager into… #275

Workflow file for this run

name: Quick Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel tox
- name: Test with tox
run: |
tox -e py
- name: Uploade coverage to codecov.io
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v3
with:
file: coverage.xml