Skip to content

Commit

Permalink
chore: format workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tenstad committed Oct 27, 2024
1 parent 667012b commit 8cf8249
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# This GitHub action can publish assets for release when a tag is created.
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0).
#
# This uses an action (hashicorp/ghaction-import-gpg) that assumes you set your
# This uses an action (hashicorp/ghaction-import-gpg) that assumes you set your
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE`
# secret. If you would rather own your own GPG handling, please fork this action
# or use an alternative one for key handling.
#
# You will need to pass the `--batch` flag to `gpg` in your signing step
# You will need to pass the `--batch` flag to `gpg` in your signing step
# in `goreleaser` to indicate this is being used in a non-interactive mode.
#
name: Release
on:
push:
tags:
- 'v*'
- v*
jobs:
goreleaser:
runs-on: ubuntu-latest
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ name: Test
on:
pull_request:
paths-ignore:
- 'README.md'
- README.md
push:
paths-ignore:
- 'README.md'
- README.md
# For systems with an upstream API that could drift unexpectedly (like most SaaS systems, etc.),
# we recommend testing at a regular interval not necessarily tied to code changes. This will
# we recommend testing at a regular interval not necessarily tied to code changes. This will
# ensure you are alerted to something breaking due to an API change, even if the code did not
# change.
# schedule:
Expand Down Expand Up @@ -93,12 +93,12 @@ jobs:
matrix:
# list whatever Terraform versions here you would like to support
terraform:
- '0.12.*'
- '0.13.*'
- '0.14.*'
- '0.15.*'
- '1.0.*'
- '1.1.*'
- 0.12.*
- 0.13.*
- 0.14.*
- 0.15.*
- 1.0.*
- 1.1.*
services:
remotehost:
image: ghcr.io/tenstad/remotehost:${{ github.sha }}
Expand All @@ -109,7 +109,7 @@ jobs:
steps:
- name: Install unzip
run: apt-get update && apt-get install -y unzip

- uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ matrix.terraform }}
Expand Down

0 comments on commit 8cf8249

Please sign in to comment.