Optimize R2 flush part implementation #33
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
name: build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.19' | |
cache: false | |
- name: Test | |
run: make test | |
- name: Lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
skip-go-installation: true | |
skip-pkg-cache: true | |
skip-build-cache: true | |
version: v1.52.2 | |
# - name: Prepare for E2E tests | |
# run: | | |
# sudo apt-get install wget | |
# wget https://dist.ipfs.tech/kubo/v0.20.0/kubo_v0.20.0_linux-amd64.tar.gz | |
# tar -xvzf kubo_v0.20.0_linux-amd64.tar.gz | |
# cd kubo | |
# sudo bash install.sh | |
# ipfs --version | |
# - name: Run E2E tests | |
# run: make e2e |