We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8785256 commit f9d4c8bCopy full SHA for f9d4c8b
.github/workflows/test-install.yml
@@ -104,3 +104,29 @@ jobs:
104
shell: bash
105
run: |
106
"${PWD}/bin/${{ env.TOOL_NAME }}" --version | grep --fixed-strings "${{ env.VERSION }}"
107
+
108
+ nightly:
109
+ strategy:
110
+ fail-fast: false
111
112
+ matrix:
113
+ os:
114
+ - ubuntu-latest
115
+ - windows-latest
116
+ - macos-latest
117
118
+ runs-on: ${{ matrix.os }}
119
120
+ steps:
121
+ - name: Checkout local repository
122
+ uses: actions/checkout@v2
123
124
+ - name: Run script with nightly build version argument
125
+ shell: sh
126
+ run: |
127
+ "${{ github.workspace }}/etc/install.sh" "nightly-latest"
128
129
+ - name: Verify installation
130
+ shell: bash
131
132
+ "${PWD}/bin/${{ env.TOOL_NAME }}" --version | grep --fixed-strings "0.0.0+"
0 commit comments