-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from nyaruka/main
Update from Upstream
- Loading branch information
Showing
192 changed files
with
14,408 additions
and
2,318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
env: | ||
go-version: "1.18.x" | ||
redis-version: "5.0.6" | ||
jobs: | ||
test: | ||
name: Test | ||
strategy: | ||
matrix: | ||
pg-version: ["12", "13"] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
|
||
- name: Install Redis | ||
uses: zhulik/redis-action@v1.0.0 | ||
with: | ||
redis version: ${{ env.redis-version }} | ||
|
||
- name: Install PostgreSQL | ||
uses: harmon758/postgresql-action@v1 | ||
with: | ||
postgresql version: ${{ matrix.pg-version }} | ||
postgresql db: courier_test | ||
postgresql user: courier | ||
postgresql password: courier | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
|
||
- name: Run tests | ||
run: go test -p=1 -coverprofile=coverage.text -covermode=atomic ./... | ||
|
||
- name: Upload coverage | ||
if: success() | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
fail_ci_if_error: true | ||
|
||
release: | ||
name: Release | ||
needs: [test] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
|
||
- name: Publish release | ||
uses: goreleaser/goreleaser-action@v1 | ||
if: ${{ !contains(github.ref, '-') }} | ||
with: | ||
version: v0.147.2 | ||
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish non-master release | ||
uses: goreleaser/goreleaser-action@v1 | ||
if: contains(github.ref, '-') | ||
with: | ||
version: v0.147.2 | ||
args: release --rm-dist --skip-validate | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.