Skip to content

Commit

Permalink
Merge branch 'main' into copyIn
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenrinzema committed Nov 10, 2024
2 parents 6ec5fb4 + 3c2d029 commit 76c5433
Show file tree
Hide file tree
Showing 6 changed files with 404 additions and 818 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/build.yaml

This file was deleted.

58 changes: 58 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI

on:
push:
branches:
- main
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "stable"

- name: Restore bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}

- name: Run linter
run: make lint

- name: Cache bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "stable"

- name: Restore bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}

- name: Run tests
run: make test

- name: Cache bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}
20 changes: 0 additions & 20 deletions .github/workflows/todo.yaml

This file was deleted.

Loading

0 comments on commit 76c5433

Please sign in to comment.