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 7fa9360
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/pr-check.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/custom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
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 tools
- run: make acctest
env:
TF_ACC: '1'
TESTARGS: '-parallel=1 -run=TestAccContainerAppEnvironment_'
SERVICE: 'containerapps'
TESTTIMEOUT: '60m'
pr-check:
name: PR checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: make tools
- run: make pr-check
- run: git status

0 comments on commit 7fa9360

Please sign in to comment.