Skip to content

πŸ“œ docs: update docs and command to get last rate of a currency #76

πŸ“œ docs: update docs and command to get last rate of a currency

πŸ“œ docs: update docs and command to get last rate of a currency #76

Workflow file for this run

on: [push, pull_request]
name: Pull request test
jobs:
lint:
name: Lint files
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: 1.17
- name: golangci-lint
uses: golangci/[email protected]
with:
version: latest
test:
strategy:
matrix:
go-version: ["1.17"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- run: go vet .
- run: go test ./... -v -cover