diff options
author | 2022-02-13 11:02:30 -0800 | |
---|---|---|
committer | 2022-02-13 11:02:30 -0800 | |
commit | e08183ee0c3aa93c9fac6b8028b13d7a280a8b43 (patch) | |
tree | dd6195ff4d8892ee65bc54aaf3c336b4d64d680a | |
parent | CI: rename jobs (diff) |
CI: remove region comments
There isn't enough "meat" to warrant their use.
-rw-r--r-- | .github/workflows/deploy.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yaml | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 3cff56d..99fb6d2 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -14,7 +14,6 @@ jobs: runs-on: ubuntu-latest steps: - # region Docker setup - name: Download image artefact uses: actions/download-artifact@v2 with: @@ -33,7 +32,6 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - # endregion # The Dockerfile will be needed. - name: Checkout code diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c31aaee..f2bf6f0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,6 @@ jobs: os: [ubuntu-20.04, self-hosted] steps: - # region container setup - name: Download image artefact uses: actions/download-artifact@v2 with: @@ -29,7 +28,6 @@ jobs: # Needed for the Docker Compose file. - name: Checkout code uses: actions/checkout@v2 - # endregion # Memory limit tests would fail if this isn't disabled. - name: Disable swap memory |