Skip to content

Commit

Permalink
Clean up syntax format
Browse files Browse the repository at this point in the history
  • Loading branch information
ykim-akamai committed May 6, 2024
1 parent b5cd8a4 commit 0d5bc3a
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ jobs:
run:
working-directory: .ansible/collections/ansible_collections/linode/cloud
steps:
- name: checkout repo
- name: Checkout repo
uses: actions/checkout@v3
with:
path: .ansible/collections/ansible_collections/linode/cloud
fetch-depth: 0
submodules: 'recursive'

- name: update packages
- name: Update packages
run: sudo apt-get update -y

- name: install make
- name: Install make and build-essentials
run: sudo apt-get install -y build-essential

- name: setup python 3
- name: Setup Python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: install dependencies
- name: Install dependencies
run: make deps

- name: install ansible dependencies
- name: Install ansible dependencies
run: ansible-galaxy collection install amazon.aws:==6.0.1

- name: Install Collection
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Run Integration Tests
run: |
make TEST_ARGS="-v api_request_basic" test
make testall
env:
LINODE_API_TOKEN: ${{ secrets.DX_LINODE_TOKEN }}
ANSIBLE_CALLBACKS_ENABLED: "junit"
Expand Down Expand Up @@ -96,9 +96,7 @@ jobs:

- name: Merge all test xmls in output directory
run: |
pwd
ls -R tests/output/junit
ls -l
python tod_scripts/merge_ansible_results.py
- name: Add additional information to XML report
Expand Down

0 comments on commit 0d5bc3a

Please sign in to comment.