Skip to content

Commit

Permalink
Merge pull request #27 from koenrh/koenrh/add-github-actions-workflow
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow
  • Loading branch information
koenrh authored Aug 17, 2019
2 parents 33a0227 + 1e00c66 commit ec03301
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 24 deletions.
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

0 comments on commit ec03301

Please sign in to comment.