forked from rapidpro/mailroom
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #124 from Ilhasoft/update/v7.5.35-ir
Update/v7.5.35 ir
- Loading branch information
Showing
135 changed files
with
3,894 additions
and
3,157 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 |
---|---|---|
@@ -1,19 +1,18 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
env: | ||
go-version: "1.18.x" | ||
postgis-version: "3.1" | ||
redis-version: "5.0.6" | ||
go-version: "1.19.x" | ||
jobs: | ||
test: | ||
name: Test | ||
strategy: | ||
matrix: | ||
pg-version: ["12", "13"] | ||
env: | ||
pg-version: "14" | ||
postgis-version: "3.2" | ||
redis-version: "6.2" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Redis | ||
uses: zhulik/[email protected] | ||
|
@@ -23,12 +22,14 @@ jobs: | |
- name: Install PostgreSQL | ||
uses: nyaruka/postgis-action@v2 | ||
with: | ||
postgresql version: ${{ matrix.pg-version }} | ||
postgresql version: ${{ env.pg-version }} | ||
postgis version: ${{ env.postgis-version }} | ||
postgresql password: temba | ||
|
||
- name: Install Linux packages | ||
run: sudo apt install -y --no-install-recommends postgresql-client | ||
run: | | ||
sudo apt-get update | ||
sudo apt install -y --no-install-recommends postgresql-client | ||
- name: Initialize database | ||
# we create our test database with a different user so that we can drop everything owned by this user between tests | ||
|
@@ -39,7 +40,7 @@ jobs: | |
psql -h localhost -U postgres --no-password -c "CREATE DATABASE mailroom_test;" | ||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
|
||
|
@@ -52,6 +53,7 @@ jobs: | |
if: success() | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: true | ||
|
||
release: | ||
|
@@ -61,7 +63,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v1 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Fetch GoFlow docs | ||
# for backward compatibility, English docs are copied to root of docs directory | ||
|
@@ -71,7 +73,7 @@ jobs: | |
cp ./docs/en-us/*.* docs/ | ||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ env.go-version }} | ||
|
||
|
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,25 @@ | ||
name: "CLA Assistant" | ||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened,closed,synchronize] | ||
|
||
jobs: | ||
CLAssistant: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "CLA Assistant" | ||
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' | ||
# Beta Release | ||
uses: contributor-assistant/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_TOKEN }} | ||
with: | ||
path-to-signatures: 'signatures/version1/cla.json' | ||
path-to-document: 'https://github.com/nyaruka/license/blob/main/TextIt_CLA.md' | ||
branch: 'main' | ||
allowlist: bot* | ||
remote-organization-name: 'nyaruka' | ||
remote-repository-name: 'legal' |
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 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 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 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
Oops, something went wrong.