Skip to content

Try fiat rater first, then fallback to crypto & Fixes #131

Try fiat rater first, then fallback to crypto & Fixes

Try fiat rater first, then fallback to crypto & Fixes #131

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Clean
run: make clean
- name: Fmt
run: make fmt
- name: Vet
run: make vet
- name: Setup Influx Db
run: make pit
- name: Setup Postgres Db
run: make pgcreatetestdb
- name: Setup client Tor proxy
run: make tor
- name: Run tests
run: TDEXA_INFLUXDB_TOKEN=${TDEXA_INFLUXDB_TOKEN} make testall