Remove ubuntu-16.04

This commit is contained in:
D-X-Y
2021-10-25 10:26:20 -07:00
parent 63f0688fc5
commit d2cef525f3
3 changed files with 3 additions and 3 deletions

41
.github/workflows/test-misc.yaml vendored Normal file
View File

@@ -0,0 +1,41 @@
name: Test Xmisc
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04, macos-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install XAutoDL from source
run: |
python setup.py install
- name: Test Xmisc
run: |
python -m pip install pytest
python -m pip install torch torchvision
python -m pip install parameterized
echo $PWD
echo "Show what we have here:"
ls
python --version
python -m pytest ./tests/test_misc* -s
shell: bash