diff options
author | 2021-12-27 17:18:38 -0800 | |
---|---|---|
committer | 2021-12-27 17:18:38 -0800 | |
commit | 2fbed64b2c5022336e100cacf5de5b716bf9fd2d (patch) | |
tree | 78d27bdff238c575690e8042ead2099564650d2f | |
parent | CI: clean up Docker stuff in self-hosted runner (diff) |
CI: rename jobs
-rw-r--r-- | .github/workflows/build.yaml | 3 | ||||
-rw-r--r-- | .github/workflows/deploy.yaml | 3 | ||||
-rw-r--r-- | .github/workflows/lint.yaml | 3 | ||||
-rw-r--r-- | .github/workflows/main.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yaml | 5 |
5 files changed, 6 insertions, 10 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8d588d6..f71d022 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,5 +1,3 @@ -name: Build image - on: workflow_call: outputs: @@ -12,6 +10,7 @@ on: jobs: build: + name: Build snekbox-venv image runs-on: ubuntu-latest outputs: artefact: ${{ env.artefact }} diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 4183917..3cff56d 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -1,5 +1,3 @@ -name: Deploy & push images - on: workflow_call: inputs: @@ -12,6 +10,7 @@ on: jobs: deploy: + name: Build, push, & deploy runs-on: ubuntu-latest steps: diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 98b204a..8f530ab 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,10 +1,9 @@ -name: Lint - on: workflow_call: jobs: lint: + name: Lint runs-on: ubuntu-latest env: PIP_DISABLE_PIP_VERSION_CHECK: 1 diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 3cdf940..f82770d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -1,4 +1,4 @@ -name: Build, lint, test, & deploy +name: main on: push: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 350142d..c31aaee 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,5 +1,3 @@ -name: Test - on: workflow_call: inputs: @@ -12,6 +10,7 @@ on: jobs: test: + name: Test with coverage runs-on: ${{ matrix.os }} strategy: matrix: @@ -64,7 +63,7 @@ jobs: docker-compose down --rmi all --remove-orphans -v -t 0 report: - name: Combine and report coverage data + name: Report coverage runs-on: ubuntu-20.04 needs: test |