Skip to content

Commit

Permalink
Enable Dependabot for automatic updates
Browse files Browse the repository at this point in the history
Update GitHub Action versions.

Update Go module versions.
  • Loading branch information
HeavyWombat committed Dec 13, 2024
1 parent 9249fa6 commit 94789aa
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ updates:
schedule:
interval: weekly
open-pull-requests-limit: 10
target-branch: main
31 changes: 31 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Tests

on:
push:
tags-ignore:
- '**'
branches:
- main
pull_request:
branches:
- main

jobs:
build:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x

- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Build
run: go build ./...

- name: Test
run: docker build --tag registry-image-resource --target tests --build-arg base_image=paketobuildpacks/run-jammy-base:latest

0 comments on commit 94789aa

Please sign in to comment.