Skip to content

Bump alpine from 3.20 to 3.21 #118

Bump alpine from 3.20 to 3.21

Bump alpine from 3.20 to 3.21 #118

Workflow file for this run

name: "build-and-test"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Go mod download
run: go mod download
- uses: Jerome1337/[email protected]
with:
gofmt-path: '.'
gofmt-flags: '-l -d'
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.56.2
skip-pkg-cache: true
- name: Test
run: go test ./...
- name: Go build
run: go build .
- uses: meeDamian/[email protected]
with:
user: ${{ secrets.DOCKERHUB_USERNAME }}
pass: ${{ secrets.DOCKERHUB_TOKEN }}
slug: foxdalas/sphinx-exporter
readme: ./README.md
# tests:
# needs: build
# runs-on: ubuntu-latest
# strategy:
# matrix:
# sphinx-version: [4.5.4, 2.4.3, 4.4.0]
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Go mod download
# run: go mod download
#
# - name: Test
# run: go test ./...