beets/.github/workflows/integration_test.yaml
jtpavlock f73a438dce
Add python 3.9-dev to CI tests (#3687)
* Add python 3.9-dev to ci tests

* test integration tests on latest versions of python
2020-07-25 15:02:19 -05:00

27 lines
566 B
YAML

name: integration tests
on:
schedule:
- cron: '0 0 * * SUN' # run every Sunday at midnight
jobs:
test_integration:
runs-on: ubuntu-latest
env:
PY_COLORS: 1
steps:
- uses: actions/checkout@v2
- name: Set up latest Python version
uses: actions/setup-python@v2
with:
python-version: 3.9-dev
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox sphinx
- name: Test with tox
run: |
tox -e int