Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Test

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
# TODO: Replace with 1.[minor].x when https://git.io/fjdAK is resolved
go_version: [1.11.13, 1.12.8]

name: Go ${{ matrix.go_version }}
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
id: go

- uses: actions/checkout@v1

- name: Download Go modules
run: go mod download
env:
GOPROXY: https://proxy.golang.org

- name: Run tests
run: go test -mod readonly -race
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Migrated CI from Travis CI to GitHub Actions

## v0.1.0

- Added support for multple name arguments [\#20](https://github.com/koenrh/s3enum/pull/20)
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# s3enum

[![Build Status](https://travis-ci.com/koenrh/s3enum.svg?branch=master)](https://travis-ci.com/koenrh/s3enum)

s3enum is a tool to enumerate a target's Amazon S3 buckets. It is fast and leverages
DNS instead of HTTP, which means that requests don't hit AWS directly.

Expand Down