Skip to content

Merge pull request #78 from snapp-incubator/dependabot/go_modules/dev… #123

Merge pull request #78 from snapp-incubator/dependabot/go_modules/dev…

Merge pull request #78 from snapp-incubator/dependabot/go_modules/dev… #123

Workflow file for this run

---
name: ci
on:
push:
branches: [ main ]
tags: [ v* ]
pull_request:
branches: [ main ]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
with:
version: latest
args: --timeout 5m
test-api:
name: test-api
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run api tests using make
run: make test-api
test-controller:
name: test-controller
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run controller tests using make
run: make test-controller
docker:
name: docker
runs-on: ubuntu-latest
needs:
- lint
- test-api
- test-controller
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5
id: meta
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/build-push-action@v5
with:
file: "Dockerfile"
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}