Skip to content

Archive payments instead of removing them #28

Archive payments instead of removing them

Archive payments instead of removing them #28

Workflow file for this run

name: ci/cd
on:
push:
branches: ["master"]
paths-ignore:
- "**.md"
- "**.org"
jobs:
lint-go:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: golangci/golangci-lint-action@v4
with:
version: v1.54
args: --timeout=15m
build-docker:
needs: lint-go
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- uses: ko-build/setup-ko@v0.6
- run: ko build -B ./
env:
KO_DOCKER_REPO: ghcr.io/dearrude
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}