Switch GitHub Actions to only Python 2.7 and 3.8 #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: logging_tree tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: [python2, python3] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Print Python version | |
run: ${{matrix.python}} --version | |
- name: Test | |
run: ${{matrix.python}} -m unittest discover -v logging_tree |