Merge pull request #1593 from gerhard/more-descriptive-names-for-github-checks

Use more descriptive names for GitHub Checks
This commit is contained in:
Gerhard Lazu 2022-02-10 12:04:33 +00:00 committed by GitHub
commit a693e19f13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 18 additions and 20 deletions

View File

@ -27,8 +27,8 @@ on:
- '.github/workflows/lint.yml'
jobs:
everything:
name: Everything
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: "Check out"

View File

@ -9,7 +9,8 @@ on:
- v*
jobs:
goreleaser:
release:
name: "Release"
runs-on: ubuntu-latest
defaults:
run:

View File

@ -19,8 +19,8 @@ on:
- '.github/workflows/test-docs.yml'
jobs:
docs:
name: Docs
test-docs:
name: "Test Docs"
runs-on: ubuntu-latest
timeout-minutes: 15
steps:

View File

@ -25,8 +25,8 @@ on:
- '.github/workflows/test-integration.yml'
jobs:
integration:
name: Integration
test-integration:
name: "Integration Tests"
runs-on: ubuntu-latest
timeout-minutes: 30
steps:

View File

@ -19,8 +19,8 @@ on:
- '.github/workflows/test-unit.yml'
jobs:
unit:
name: Unit
unit-tests:
name: "Unit Tests"
runs-on: ubuntu-latest
timeout-minutes: 30
steps:

View File

@ -25,8 +25,8 @@ on:
- '.github/workflows/test-universe.yml'
jobs:
universe:
name: Universe
universe-tests:
name: "Universe Tests"
runs-on: ubuntu-latest
timeout-minutes: 30
services:
@ -85,8 +85,8 @@ jobs:
run: |
make universe-test
universe-europa:
name: "Universe - Europa"
universe-europa-tests:
name: "Universe Tests - Europa"
runs-on: ubuntu-latest
timeout-minutes: 30
steps:

View File

@ -1,21 +1,18 @@
name: Website
# TODO: https://github.com/dagger/dagger.io/issues/45
name: "Test Website"
on:
push:
branches: [main]
paths:
- "website/**"
pull_request:
branches: [main]
paths:
- "website/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
website:
name: Website
test-website:
name: "Test Website"
runs-on: ubuntu-latest
steps:
- name: Checkout