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

Reconfigure CI to test on all branches #374

Merged
merged 2 commits into from Oct 11, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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