diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..e4b2499 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,19 @@ +changelog: + categories: + - title: Breaking Changes 🛠 + labels: + - Semver-Major + - breaking-change + - title: New Features 🎉 + labels: + - Semver-Minor + - enhancement + - title: Crashed bugs 🐛 + labels: + - bug + - title: Documentation 📑 + labels: + - documentation + - title: Other Changes + labels: + - "*" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..f7d4e15 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,17 @@ +name: tests +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + run-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: '>=1.18.0' + - run: go test