Skip to content

Commit

Permalink
Golang file system (fs.FS) abstraction tailored for AWS S3 (#28)
Browse files Browse the repository at this point in the history
* Golang file system (fs.FS) abstraction tailored for AWS S3
  • Loading branch information
fogfish committed May 12, 2024
1 parent 4e387a5 commit 4a21e12
Show file tree
Hide file tree
Showing 39 changed files with 2,892 additions and 1,980 deletions.
9 changes: 3 additions & 6 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@
- 'doc/**/*'
- 'examples/**/*'

"[#] api":
"[#] stream":
- '*.go'
- 'creek/*'

"[#] s3":
- 'internal/s3/*'
- 'internal/s3/**/*'
- 'internal/*'
- 'internal/**/*'
8 changes: 4 additions & 4 deletions .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: "1.20"
go-version: "1.22"

- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.1

- uses: dominikh/staticcheck-action@v1.2.0
- uses: dominikh/staticcheck-action@v1.3.0
with:
install-go: false
8 changes: 4 additions & 4 deletions .github/workflows/check-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: "1.20"
go-version: "1.22"

- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.1

- name: go build
run: |
go build ./...
- name: go test
run: |
go test -v -coverprofile=profile.cov $(go list ./... | grep -v /examples/)
go test -v -coverprofile=profile.cov $(go list ./... | grep -v examples | grep -v mocks )
- uses: shogo82148/actions-goveralls@v1
continue-on-error: true
Expand Down
18 changes: 0 additions & 18 deletions Makefile

This file was deleted.

Loading

0 comments on commit 4a21e12

Please sign in to comment.