2019-11-13 18:03:11 +00:00
|
|
|
name: Test Docker Hub Images
|
|
|
|
|
2020-02-14 16:23:20 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 0'
|
2019-11-13 18:03:11 +00:00
|
|
|
|
|
|
|
jobs:
|
2020-02-14 16:23:20 +00:00
|
|
|
latest:
|
2019-11-13 18:03:11 +00:00
|
|
|
runs-on: ubuntu-18.04
|
2020-02-14 16:23:20 +00:00
|
|
|
container: docker://nasatrick/${{matrix.container}}:latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-10-22 15:21:33 +00:00
|
|
|
container: [trick_ubuntu1804]
|
2019-11-13 18:03:11 +00:00
|
|
|
steps:
|
|
|
|
- name: run tests
|
|
|
|
run: |
|
2019-11-18 16:15:30 +00:00
|
|
|
cd /trick*
|
2019-11-13 18:03:11 +00:00
|
|
|
make test
|
2020-02-14 16:23:20 +00:00
|
|
|
|