Fix some special characters may break the file path #837
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a golang project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | |
name: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go: [ '1.19','1.20' ] | |
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v -race ./... -coverprofile=coverage.txt -covermode=atomic -timeout=10m | |
- name: Test Encrypt | |
run: go test -v -race -tags=encrypt_test ./encrypt | |
- name: Test HttpUtil | |
run: go test -v -race -tags=httputil_test ./util/httputil | |
- name: Test Integration | |
run: go test -v -race -tags=integration_test ./integration | |
- name: Test Integration Task | |
run: go test -v -race -tags=integration_test_task ./integration | |
- name: Install and mount MinIO | |
run: chmod +x ./scripts/minio/*.sh && ./scripts/minio/install-minio.sh && ./scripts/minio/mount-minio.sh | |
if: matrix.os == 'ubuntu-latest' | |
- name: Test Integration MinIO | |
run: go test -v -race -tags=integration_test_minio ./integration | |
if: matrix.os == 'ubuntu-latest' | |
- name: Codecov | |
uses: codecov/codecov-action@v3 | |
if: matrix.os == 'ubuntu-latest' |