Skip to content

Bump docker/metadata-action from 5.3.0 to 5.4.0 #34

Bump docker/metadata-action from 5.3.0 to 5.4.0

Bump docker/metadata-action from 5.3.0 to 5.4.0 #34

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Run tests
on:
branch_protection_rule:
types:
- created
push:
branches:
- main
- *

Check failure on line 14 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...