Create an infrastructure directory for devops activities #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI tests | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
workflow_dispatch: | |
branches: | |
- "develop/*" | |
jobs: | |
checkout: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Repository checkout | |
run: ls | |
test: | |
runs-on: ubuntu-latest | |
needs: checkout | |
steps: | |
- name: Ccheck | |
uses: actions/checkout@v3 | |
- name: Build docker image and run tests | |
run: docker run -it -v $PWD:/home/tryitondocker/madagascar-3.0/user/vfsa ghcr.io/dirack/madagascarenvironment:1.0.1 ls |