Skip to content

Commit

Permalink
Test ARC container job
Browse files Browse the repository at this point in the history
  • Loading branch information
baksetercx committed May 2, 2024
1 parent b35c134 commit f19ff23
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/arc-container-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: ARC testing
on:
pull_request:
branches: [trunk]

jobs:
arc-container-test-job:
name: ARC container test job
runs-on: 3lvia-runner-aks
container:
image: debian:latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run tests
run: |
echo "Running tests..."
sleep 10
echo "Tests completed"
arc-no-container-test-job:
name: ARC no container test job
runs-on: 3lvia-runner-aks
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run tests
run: |
echo "Running tests..."
sleep 10
echo "Tests completed"
1 change: 1 addition & 0 deletions .github/workflows/check-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
prettier_check:
if: false
name: 'Prettier check'
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/test-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Test actions
on:
push:
branches: [trunk]
pull_request:
branches: [trunk]

env:
APPLICATION_NAME: 'demo-api'
Expand Down

0 comments on commit f19ff23

Please sign in to comment.