Update renterFundsToExpectedStorage to use rhpv3 pricing #3492
Workflow file for this run
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest , macos-latest, windows-latest ] | |
go-version: [ '1.20', '1.21' ] | |
steps: | |
- name: Configure Windows | |
if: matrix.os == 'windows-latest' | |
run: git config --global core.autocrlf false # fixes go lint fmt error | |
- name: Configure MySQL | |
if: matrix.os == 'ubuntu-latest' | |
uses: mirromutth/[email protected] | |
with: | |
host port: 3800 | |
mysql version: '8' | |
mysql root password: test | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --timeout=30m | |
- name: Test | |
uses: n8maninger/action-golang-test@v1 | |
with: | |
args: "-race;-short" | |
- name: Test Integration | |
uses: n8maninger/action-golang-test@v1 | |
with: | |
package: "./internal/testing/..." | |
args: "-race;-tags='testing';-timeout=30m" | |
- name: Test Integration - MySQL | |
if: matrix.os == 'ubuntu-latest' | |
uses: n8maninger/action-golang-test@v1 | |
env: | |
RENTERD_DB_URI: 127.0.0.1:3800 | |
RENTERD_DB_USER: root | |
RENTERD_DB_PASSWORD: test | |
with: | |
package: "./internal/testing/..." | |
args: "-race;-tags='testing';-timeout=30m" | |
- name: Check Endpoints | |
uses: SiaFoundation/action-golang-analysis@HEAD | |
with: | |
analyzers: | | |
go.sia.tech/jape.Analyzer | |
- name: Build | |
run: go build -o bin/ ./cmd/renterd |