16 lines
903 B
YAML
Raw Normal View History

2020-01-28 20:19:38 +01:00
name: Test Docker image
2022-02-17 12:35:16 +00:00
on: [push, pull_request, workflow_dispatch]
2020-01-28 20:19:38 +01:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2020-01-28 20:19:38 +01:00
- name: Build the Docker image
run: |
docker run -i $(docker build -q 14) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v"
docker run -i $(docker build -q 16) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v"
docker run -i $(docker build -q 14-3.13) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v"
docker run -i $(docker build -q 16-3.13) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v"