Skip to content

Merge pull request #26 from qubic/bugfix/sort-assets #3

Merge pull request #26 from qubic/bugfix/sort-assets

Merge pull request #26 from qubic/bugfix/sort-assets #3

Workflow file for this run

on:
push:
paths:
- 'api/**'
pull_request:
paths:
- 'api/**'
name: Test stats api
jobs:
test-nocache:
strategy:
matrix:
go-version: [1.26.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: false
- run: go test -p 1 -tags ci ./...
working-directory: api