Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate Fresnel from Travis CI to GitHub Actions #12

Merged
merged 1 commit into from
Oct 6, 2020
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
23 changes: 23 additions & 0 deletions .github/workflows/go_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Go Tests
on: [push, pull_request]
jobs:
go_tests:
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Download Dependencies
run: go get -v -t -d ./...

- name: Test
run: go test -v ./...
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Fresnel

| Support | Travis CI | Contributing | Open Issues | License |
| Support | Tests | Contributing | Open Issues | License |
|----------------|------------|------|---------|-------------|
[![Google Groups - Fresnel](https://img.shields.io/badge/Support-Google%20Groups-blue)](https://groups.google.com/forum/#!forum/fresnel-discuss) | [![Travis CI Build Status](https://img.shields.io/travis/google/fresnel)](https://travis-ci.org/google/fresnel) | [![Contributing](https://img.shields.io/badge/contributions-welcome-brightgreen)](https://github.com/google/fresnel/blob/master/CONTRIBUTING.md) | [![Open Issues](https://img.shields.io/github/issues/google/fresnel)](https://github.com/google/fresnel/issues) | [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg)](https://github.com/google/fresnel/blob/master/LICENSE)
[![Google Groups - Fresnel](https://img.shields.io/badge/Support-Google%20Groups-blue)](https://groups.google.com/forum/#!forum/fresnel-discuss) | [![Go Tests](https://github.com/google/fresnel/workflows/Go%20Tests/badge.svg)](https://github.com/google/fresnel/actions?query=workflow%3A%22Go+Tests%22) | [![Contributing](https://img.shields.io/badge/contributions-welcome-brightgreen)](https://github.com/google/fresnel/blob/master/CONTRIBUTING.md) | [![Open Issues](https://img.shields.io/github/issues/google/fresnel)](https://github.com/google/fresnel/issues) | [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg)](https://github.com/google/fresnel/blob/master/LICENSE)

[Fresnel](https://en.wikipedia.org/wiki/Fresnel_lens) */fray-NEL/* projects Windows out into the world.

Expand Down