Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gavincabbage committed Sep 14, 2019
1 parent e69ade5 commit ebd7022
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/go_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: go test
on: [push, pull_request]
jobs:
build:
name: Test
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Test
run: ./test/scripts/up.sh
2 changes: 1 addition & 1 deletion chiv.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func ArchiveWithContext(ctx context.Context, db *sql.DB, s3 *s3manager.Uploader,
return NewArchiver(db, s3).ArchiveWithContext(ctx, table, bucket, options...)
}

// Archiver archives arbitrarily large relational database tables to Amazon S3.
// Archiver archives database tables to Amazon S3.
type Archiver struct {
db *sql.DB
s3 *s3manager.Uploader
Expand Down

0 comments on commit ebd7022

Please sign in to comment.