Update docs #7
Workflow file for this run
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 | |
steps: | |
- uses: actions/checkout@v3 | |
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 | |
- name: Remove keyfile | |
run: rm -f ./.docker/gs64/gemstone.key |