Skip to content

Commit

Permalink
Merge pull request #2 from nyaruka/main
Browse files Browse the repository at this point in the history
Update from Upstream
  • Loading branch information
tybritten authored Aug 2, 2022
2 parents ac10856 + c57974a commit 01ffa7a
Show file tree
Hide file tree
Showing 192 changed files with 14,408 additions and 2,318 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/ci.yml
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 }}
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
*.a
*.so
*~
deploy
fabric
fabfile.py
fabfile.pyc
fabconfig.py
Expand Down Expand Up @@ -32,4 +34,5 @@ _testmain.go
.DS_Store
dist/
.envrc
courier
courier
_storage
61 changes: 0 additions & 61 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 01ffa7a

Please sign in to comment.