We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c199d5e commit a9e252dCopy full SHA for a9e252d
.github/workflows/main.yml
@@ -49,6 +49,7 @@ jobs:
49
50
# Run our CI/CD builds.
51
build:
52
+ needs: [build_containers]
53
strategy:
54
matrix:
55
platform:
@@ -69,9 +70,11 @@ jobs:
69
70
name: Build
71
runs-on: ${{ matrix.platform.os }}
72
steps:
- - run: echo ${{ matrix.platform.os }} ${{matrix.platform.image}}
73
- - run: |
74
- mkdir build && cd build
75
- ../azure-pipelines/build.sh
76
- ../azure-pipelines/test.sh
+ - name: Check out repository
+ uses: actions/checkout@v2
+ - run: echo ${{ matrix.platform.os }} ${{matrix.platform.image}}
+ - run: |
77
+ mkdir build && cd build
78
+ ../azure-pipelines/build.sh
79
+ ../azure-pipelines/test.sh
80
shell: bash
0 commit comments