Skip to content

Commit

Permalink
Merge pull request #18 from girder/ci
Browse files Browse the repository at this point in the history
Add basic CI
  • Loading branch information
brianhelba authored Feb 10, 2021
2 parents fb683df + e1cf529 commit 7bcc849
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ci
on:
pull_request:
push:
branches:
- master
schedule:
- cron: "0 0 * * *"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_wrapper: false
- name: Lint Terraform
run: |
terraform fmt -recursive -check

0 comments on commit 7bcc849

Please sign in to comment.