mirror of
https://github.com/willnorris/imageproxy.git
synced 2026-07-24 04:31:10 +02:00
.github: run prettier over all yml files
This commit is contained in:
parent
ef50c1f9a6
commit
2451f30f07
5 changed files with 68 additions and 68 deletions
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
|
|
@ -6,7 +6,7 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 1 * * 6' # run weekly on Saturdays
|
- cron: "0 1 * * 6" # run weekly on Saturdays
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
|
|
@ -20,7 +20,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
language: ['go']
|
language: ["go"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
|
||||||
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
|
|
@ -2,12 +2,12 @@ name: Docker
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ 'main' ]
|
branches: ["main"]
|
||||||
tags: [ 'v*' ]
|
tags: ["v*"]
|
||||||
pull_request:
|
pull_request:
|
||||||
# Run the workflow on pull_request events to ensure we can still build the image.
|
# Run the workflow on pull_request events to ensure we can still build the image.
|
||||||
# We only publish the image on push events (see if statements in steps below).
|
# We only publish the image on push events (see if statements in steps below).
|
||||||
branches: [ 'main' ]
|
branches: ["main"]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
|
|
|
||||||
2
.github/workflows/linter.yml
vendored
2
.github/workflows/linter.yml
vendored
|
|
@ -4,7 +4,7 @@ on:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- '**'
|
- "**"
|
||||||
name: linter
|
name: linter
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
||||||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -4,7 +4,7 @@ on:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- '**'
|
- "**"
|
||||||
name: tests
|
name: tests
|
||||||
env:
|
env:
|
||||||
GO111MODULE: on
|
GO111MODULE: on
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue