moto/.github/workflows/dependency_test.yml

33 lines
738 B
YAML
Raw Normal View History

name: DependencyTest
2021-11-14 14:02:05 +00:00
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every day at midnight
jobs:
runtest:
name: Run Dependency Test
runs-on: ubuntu-latest
strategy:
matrix:
2021-09-17 16:39:54 +00:00
python-version: [ 3.6, 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 }}
- name: Run test
run: |
2021-07-29 07:28:25 +00:00
scripts/dependency_test.sh
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
with:
name: buildfolder-${{ matrix.python-version }}
path: |
test_results_*.log