Skip to content

Commit

Permalink
Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
Ibrahim Umar committed Dec 30, 2023
1 parent 262e934 commit 25a89e1
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/pr-check.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: Run Relevant Checks

on: [push]

jobs:
acceptance:
name: Acceptance Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: '1.6.*'
terraform_wrapper: false
- run: make make acctests
env:
TF_ACC: '1'
TESTARGS: '-parallel=1 -run=TestAccContainerAppEnvironment_'
SERVICE: 'containerapps'
TESTTIMEOUT: '60m'
pr-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@4
- uses: actions/setup-go@5
with:
go-version-file: 'go.mod'
- run: make tools
- run: make pr-check
- run: git status

0 comments on commit 25a89e1

Please sign in to comment.