Merge pull request #1593 from gerhard/more-descriptive-names-for-github-checks
Use more descriptive names for GitHub Checks
This commit is contained in:
commit
a693e19f13
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@ -27,8 +27,8 @@ on:
|
|||||||
- '.github/workflows/lint.yml'
|
- '.github/workflows/lint.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
everything:
|
lint:
|
||||||
name: Everything
|
name: Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: "Check out"
|
- name: "Check out"
|
||||||
|
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
@ -9,7 +9,8 @@ on:
|
|||||||
- v*
|
- v*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
goreleaser:
|
release:
|
||||||
|
name: "Release"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
4
.github/workflows/test-docs.yml
vendored
4
.github/workflows/test-docs.yml
vendored
@ -19,8 +19,8 @@ on:
|
|||||||
- '.github/workflows/test-docs.yml'
|
- '.github/workflows/test-docs.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docs:
|
test-docs:
|
||||||
name: Docs
|
name: "Test Docs"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
|
4
.github/workflows/test-integration.yml
vendored
4
.github/workflows/test-integration.yml
vendored
@ -25,8 +25,8 @@ on:
|
|||||||
- '.github/workflows/test-integration.yml'
|
- '.github/workflows/test-integration.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
integration:
|
test-integration:
|
||||||
name: Integration
|
name: "Integration Tests"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
|
4
.github/workflows/test-unit.yml
vendored
4
.github/workflows/test-unit.yml
vendored
@ -19,8 +19,8 @@ on:
|
|||||||
- '.github/workflows/test-unit.yml'
|
- '.github/workflows/test-unit.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
unit:
|
unit-tests:
|
||||||
name: Unit
|
name: "Unit Tests"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
|
8
.github/workflows/test-universe.yml
vendored
8
.github/workflows/test-universe.yml
vendored
@ -25,8 +25,8 @@ on:
|
|||||||
- '.github/workflows/test-universe.yml'
|
- '.github/workflows/test-universe.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
universe:
|
universe-tests:
|
||||||
name: Universe
|
name: "Universe Tests"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
services:
|
services:
|
||||||
@ -85,8 +85,8 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
make universe-test
|
make universe-test
|
||||||
|
|
||||||
universe-europa:
|
universe-europa-tests:
|
||||||
name: "Universe - Europa"
|
name: "Universe Tests - Europa"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
|
@ -1,21 +1,18 @@
|
|||||||
name: Website
|
# TODO: https://github.com/dagger/dagger.io/issues/45
|
||||||
|
name: "Test Website"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
paths:
|
paths:
|
||||||
- "website/**"
|
- "website/**"
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
paths:
|
|
||||||
- "website/**"
|
|
||||||
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
website:
|
test-website:
|
||||||
name: Website
|
name: "Test Website"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
Reference in New Issue
Block a user