moto/.github/workflows/dependency_test.yml
2021-11-14 13:02:05 -01:00

33 lines
738 B
YAML

name: DependencyTest
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every day at midnight
jobs:
runtest:
name: Run Dependency Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.8 ]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run test
run: |
scripts/dependency_test.sh
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
with:
name: buildfolder-${{ matrix.python-version }}
path: |
test_results_*.log