Skip to content

Commit

Permalink
ci: Switch from Travis to GitHub Actions (integrations#717)
Browse files Browse the repository at this point in the history
- The Travis CI YAML specified Ubuntu Trusty as a runner OS, which is
  very end-of-life, so I switched those checks to GitHub Actions for
  consistency with the other jobs here (acceptance tests, etc).
- You can see a test workflow run at
  https://github.com/issyl0/terraform-provider-github/runs/2024800600.
- I didn't know if we wanted to do matrix builds to test multiple
  versions of Go, but that can be a goal for the future if we do. The
  development instructions for this provider still say Go 1.13.
  • Loading branch information
issyl0 authored Mar 16, 2021
1 parent cba8cd6 commit 94738b8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 29 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: GitHub Actions CI

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
env:
GOFLAGS: "-mod=vendor"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.13'
- run: make tools
- run: make lint
- run: make test
- run: make website-lint
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

0 comments on commit 94738b8

Please sign in to comment.