mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 12:56:26 +00:00
981deff397
* Old yellering CentOS * CentOS is still haunting TrickOPs * Begone spirit of CentOS * CentOS's ghost has been laid to rest
20 lines
347 B
YAML
20 lines
347 B
YAML
name: Test Docker Hub Images
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
latest:
|
|
runs-on: ubuntu-18.04
|
|
container: docker://nasatrick/${{matrix.container}}:latest
|
|
strategy:
|
|
matrix:
|
|
container: [trick_ubuntu1804]
|
|
steps:
|
|
- name: run tests
|
|
run: |
|
|
cd /trick*
|
|
make test
|
|
|