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
|
|
|
|
- name: Run test
|
|
|
|
run: |
|
2021-07-29 07:28:25 +00:00
|
|
|
sudo apt install python3-venv
|
|
|
|
which venv
|
|
|
|
which virtualenv
|
|
|
|
scripts/dependency_test.sh
|