Skip to content

fix: correct 'invlaid' to 'invalid' typo in path error message #244

fix: correct 'invlaid' to 'invalid' typo in path error message

fix: correct 'invlaid' to 'invalid' typo in path error message #244

Workflow file for this run

name: Go test
on:
push:
branches: "*"
pull_request:
branches: "*"
jobs:
unit-test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: [1.17, 1.18, 1.19, '1.20']
include:
- os: ubuntu-latest
go-build: ~/.cache/go-build
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- uses: actions/cache@v2
with:
path: |
${{ matrix.go-build }}
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run Tests
run: |
make test
it-test-s3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Run test
run: make integration-test
env:
TEST_REPOSITORY: ${{ secrets.REPOSITORY_S3 }}
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}