Skip to content

v1.0.1 (#2)

v1.0.1 (#2) #12

Workflow file for this run

name: Crypto Test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
crypto-test:
strategy:
matrix:
go-version: [1.19.x,1.20.x,1.21.x]
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
env:
SECRET: ${{secrets.CRYPTO_SECRET}}
NODEJS_HASHED: ${{secrets.NODEJS_HASHED}}
NODEJS_PASS: ${{secrets.NODEJS_PASS}}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Setup Golang caches
uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
~\AppData\Local\go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...