2021-07-29 05:38:16 +00:00
|
|
|
name: DependencyTest
|
|
|
|
|
|
|
|
on: workflow_dispatch
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
runtest:
|
|
|
|
name: Run Dependency Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: [ 3.8 ]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
2021-07-29 13:49:20 +00:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2021-07-29 05:38:16 +00:00
|
|
|
- name: Run test
|
|
|
|
run: |
|
2021-07-29 07:28:25 +00:00
|
|
|
scripts/dependency_test.sh
|