Skip to content

Commit

Permalink
Merge pull request #14 from jrhouston/update-repl
Browse files Browse the repository at this point in the history
Update Terraform repl package to bring in better formatting
  • Loading branch information
jrhouston authored Mar 18, 2021
2 parents 7bdc9ec + a285c75 commit fef3896
Show file tree
Hide file tree
Showing 6 changed files with 551 additions and 171 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Unit Tests"

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: make test
run: |
make test
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: build docker docker-push release install test clean

VERSION := 0.1.1
VERSION := 0.1.2
DOCKER_IMAGE_NAME := jrhouston/tfk8s

build:
Expand Down Expand Up @@ -32,7 +32,7 @@ install:
go install -ldflags "-X main.toolVersion=${VERSION}"

test:
go test
go test -v

clean:
rm -rf release/*
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ module github.com/jrhouston/tfk8s
go 1.14

require (
github.com/hashicorp/terraform v0.12.24
github.com/hashicorp/terraform v0.14.8
github.com/spf13/pflag v1.0.3
github.com/stretchr/testify v1.3.0
github.com/stretchr/testify v1.5.1
github.com/zclconf/go-cty v1.8.0
gopkg.in/yaml.v2 v2.2.8
sigs.k8s.io/yaml v1.1.0
)
Loading

0 comments on commit fef3896

Please sign in to comment.