Merge pull request #71 from ba-st/improve_vulnerabiltiy_scanning #115
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: GS64 Docker Tests | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- "3.7.0" | |
- "3.7.1" | |
name: GS64 v${{ matrix.version }} Docker Tests | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Configure keyfile | |
run: | | |
echo "$GS_KEYFILE" > ./.docker/gs64/gemstone.key | |
env: | |
GS_KEYFILE: ${{ secrets.GS_KEYFILE }} | |
- name: Run tests using Docker | |
run: ./.docker/gs64/docker-tests.sh ${{ matrix.version }} | |
- name: Remove keyfile | |
run: rm -f ./.docker/gs64/gemstone.key |