xautodl/.github/workflows/test-misc.yml

42 lines
943 B
YAML
Raw Normal View History

2021-06-11 05:46:18 +02:00
name: Test Xmisc
2021-03-18 13:15:50 +01:00
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-16.04, 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 }}
2021-05-19 07:00:33 +02:00
- name: Install XAutoDL from source
run: |
python setup.py install
2021-06-11 05:46:18 +02:00
- name: Test Xmisc
2021-03-18 13:15:50 +01:00
run: |
python -m pip install pytest numpy
2021-05-19 07:13:11 +02:00
python -m pip install torch torchvision
2021-06-11 05:46:18 +02:00
python -m pip install parameterized
echo $PWD
echo "Show what we have here:"
ls
python --version
python -m pytest ./tests/test_misc* -s
2021-05-19 10:10:42 +02:00
shell: bash