Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
Reconfigure CI to test on all branches (#374)
Browse files Browse the repository at this point in the history
* Reconfigure CI to test on all branches

* 🔥 Travis CI
  • Loading branch information
mislav committed Oct 11, 2021
1 parent 82fd306 commit 13bc976
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 31 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/test.yml
@@ -1,26 +1,22 @@
name: Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
on: [push, pull_request]

env:
GO111MODULE: on

jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand All @@ -32,4 +28,3 @@ jobs:

- name: Run Tests
run: run tests

22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
@@ -1,6 +1,5 @@
# Survey

[![Build Status](https://travis-ci.org/AlecAivazis/survey.svg?branch=feature%2Fpretty)](https://travis-ci.org/AlecAivazis/survey)
[![GoDoc](http://img.shields.io/badge/godoc-reference-5272B4.svg)](https://pkg.go.dev/github.com/AlecAivazis/survey/v2)

A library for building interactive and accessible prompts on terminals supporting ANSI escape sequences.
Expand Down

0 comments on commit 13bc976

Please sign in to comment.