diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index ef9176d..b2bbbc2 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -4,9 +4,6 @@ updates: directory: "/" schedule: interval: daily - pull-request-branch-name: - separator: "-" - open-pull-requests-limit: 3 - package-ecosystem: github-actions directory: "/" schedule: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4cb6030..7f1b39a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,30 +1,8 @@ name: test on: push: - branches: - - main - pull_request: jobs: - build: - name: go - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - go: ['1.18', '1.19'] - steps: - - name: setup Go - uses: actions/setup-go@v3 - with: - go-version: ${{matrix.go}} - - - name: setup Terraform - uses: hashicorp/setup-terraform@v2 - with: - terraform_wrapper: false - - - name: checkout - uses: actions/checkout@v3 - - - name: test - run: make + go: + uses: poseidon/.github/.github/workflows/golang-library.yaml@main + with: + setup_terraform: true