mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
32 lines
630 B
YAML
32 lines
630 B
YAML
name: Test Docker Hub Images
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
centos7:
|
|
runs-on: ubuntu-18.04
|
|
container: docker://nasatrick/trick_centos7:latest
|
|
steps:
|
|
- name: run tests
|
|
run: |
|
|
cd /trick*
|
|
make test
|
|
|
|
centos8:
|
|
runs-on: ubuntu-18.04
|
|
container: docker://nasatrick/trick_centos8:latest
|
|
steps:
|
|
- name: run tests
|
|
run: |
|
|
cd /trick*
|
|
make test
|
|
|
|
ubuntu1804:
|
|
runs-on: ubuntu-18.04
|
|
container: docker://nasatrick/trick_ubuntu1804:latest
|
|
steps:
|
|
- name: run tests
|
|
run: |
|
|
cd /trick*
|
|
make test
|