Skip to content

Keep the espresso machine at brew temperature with a periodic purge #486

Keep the espresso machine at brew temperature with a periodic purge

Keep the espresso machine at brew temperature with a periodic purge #486

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-24.04
steps:
# actions/checkout@v6.0.2
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
# actions/setup-go@v6.3.0
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
with:
go-version-file: go.mod
- name: Install dependencies
run: make setup
- name: Build
run: go build ./...
lint:
runs-on: ubuntu-24.04
steps:
# actions/checkout@v6.0.2
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
# actions/setup-go@v6.3.0
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
with:
go-version-file: go.mod
- name: Install dependencies
run: make setup
- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b "$(go env GOPATH)/bin" v2.11.4
- name: Lint
run: make lint
test:
runs-on: ubuntu-24.04
steps:
# actions/checkout@v6.0.2
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
# actions/setup-go@v6.3.0
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417
with:
go-version-file: go.mod
- name: Install dependencies
run: make setup
- name: Test
run: go test ./...