diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..63a6320 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,15 @@ +changelog: + categories: + - title: 💥 Breaking changes + labels: + - breaking-change + - title: ⚡️ Improvements + labels: + - enhancement + - documentation + - title: 👨‍🔧 Fixes + labels: + - bugs + - title: 🎨 Other changes + labels: + - "*" \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..d1f081f --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,20 @@ +name: Test +on: + push: + branches: [ main ] + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.21.3' + - name: Install dependencies + run: go get . + - name: Test with the Go CLI + run: go test ./...