trick/.disabled-github/workflows/docker.yml

26 lines
550 B
YAML
Raw Normal View History

2019-11-13 18:03:11 +00:00
name: Test Docker Hub Images
on:
schedule:
# Run once a week at midnight on Sunday morning
2019-11-13 18:17:40 +00:00
- cron: '0 0 * * 0'
2019-11-13 18:03:11 +00:00
jobs:
centos7-17.5.0:
runs-on: ubuntu-18.04
container: docker://nasatrick/trick_centos7:17.5.0
steps:
- name: run tests
run: |
cd /trick-17.5.0
make test
2019-11-13 18:17:40 +00:00
ubuntu1804-17.5.0:
runs-on: ubuntu-18.04
container: docker://nasatrick/trick_ubuntu1804:17.5.0
steps:
- name: run tests
run: |
cd /trick-17.5.0
make test