Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Functional Tests

Functional Tests #320

name: Functional Tests
on:
schedule:
- cron: "0 1 * * *"
workflow_dispatch:
env:
RELAY_METER_URL: ${{secrets.RELAY_METER_URL}}
RELAY_METER_API_KEY: ${{secrets.RELAY_METER_API_KEY}}
jobs:
test:
name: Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run Functional tests
run: make run_functional_tests