Browse Source

Allow tests to run manually

Avoids having to push, e.g. when adding a tag or updating credentials.
pull/702/head
Timothe Litt 4 years ago
parent
commit
b2e4d73e9d
Failed to extract signature
4 changed files with 12 additions and 0 deletions
  1. +3
    -0
      .github/workflows/run-tests-pebble.yml
  2. +3
    -0
      .github/workflows/run-tests-staging-duckdns.yml
  3. +3
    -0
      .github/workflows/run-tests-staging-dynu.yml
  4. +3
    -0
      .github/workflows/shellcheck.yml

+ 3
- 0
.github/workflows/run-tests-pebble.yml View File

@ -8,6 +8,9 @@ on:
pull_request:
branches:
- master
workflow_dispatch:
branches:
- master
jobs:
test-alpine:
runs-on: ubuntu-latest


+ 3
- 0
.github/workflows/run-tests-staging-duckdns.yml View File

@ -8,6 +8,9 @@ on:
pull_request:
branches:
- master
workflow_dispatch:
branches:
- master
env:
DUCKDNS_TOKEN: ${{ secrets.DUCKDNS_TOKEN }}
jobs:


+ 3
- 0
.github/workflows/run-tests-staging-dynu.yml View File

@ -8,6 +8,9 @@ on:
pull_request:
branches:
- master
workflow_dispatch:
branches:
- master
env:
DYNU_API_KEY: ${{ secrets.DYNU_API_KEY }}
jobs:


+ 3
- 0
.github/workflows/shellcheck.yml View File

@ -7,6 +7,9 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
branches:
- master
jobs:
lint:


Loading…
Cancel
Save