Skip to content

Adding support for storing snapshots with any time resolution in CSV files and File System Repository. #358

Adding support for storing snapshots with any time resolution in CSV files and File System Repository.

Adding support for storing snapshots with any time resolution in CSV files and File System Repository. #358

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Setup cache
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run task
run: go run github.com/go-task/task/v3/cmd/task@v3.38.0
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}