allow to set forward amount for external withdrawals to zero #50
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
name: Go | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: TESTS | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_DB: payment_processor | |
POSTGRES_USER: pp_user | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | |
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22 | |
- name: Build | |
run: go build -v ./... | |
- uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-2go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-2go- | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install openssl ca-certificates libsecp256k1-0 libsodium23 | |
- name: Install libs | |
run: | | |
wget -O libemulator.so https://github.com/ton-blockchain/ton/releases/download/v2024.02/libemulator-linux-x86-64.so | |
sudo cp libemulator.so /lib | |
- name: Update Library Cache | |
run: sudo ldconfig | |
- name: Verify Library Presence | |
run: ls /lib | grep libemulator.so | |
- name: Run Test | |
env: | |
SEED: ${{ secrets.SEED }} | |
SERVER: ${{ secrets.SERVER }} | |
KEY: ${{ secrets.KEY }} | |
DB_URI: postgresql://pp_user:postgres@localhost:5432/payment_processor?sslmode=disable | |
run: | | |
go test -v $(go list ./...) |