feat: API Sync by GitHub Action (2024-09-04) #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request_target: | |
paths: | |
- 'config/**' | |
- 'equinix_metal/**' | |
- 'templates/**' | |
- metal_openapi.fixed.yaml | |
- 'oas3.stitched/**' | |
- 'oas3.fetched/**' | |
workflow_dispatch: | |
permissions: | |
pull-requests: read | |
contents: read | |
jobs: | |
authorize: | |
environment: | |
${{ github.event_name == 'pull_request_target' && | |
github.event.pull_request.head.repo.full_name != github.repository && | |
'external' || 'internal' }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: true | |
integration-test-pr: | |
needs: authorize | |
runs-on: ubuntu-latest | |
steps: | |
- name: update packages | |
run: sudo apt-get update -y | |
- name: install make | |
run: sudo apt-get install -y build-essential | |
- name: setup python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: checkout Python SDK, this PR | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
- name: checkout Ansible collection | |
uses: actions/checkout@v4 | |
with: | |
repository: equinix-labs/ansible-collection-equinix | |
path: .ansible/collections/ansible_collections/equinix/cloud | |
ref: main | |
- name: install dependencies of ansible collection | |
run: pip3 install -r requirements-dev.txt -r requirements.txt | |
working-directory: .ansible/collections/ansible_collections/equinix/cloud | |
- name: install cloned Python SDK | |
run: python3 -m pip install ./equinix_metal | |
- name: replace existing keys | |
run: rm -rf ~/.ansible/test && mkdir -p ~/.ansible/test && ssh-keygen -m PEM -q -t rsa -N '' -f ~/.ansible/test/id_rsa | |
working-directory: .ansible/collections/ansible_collections/equinix/cloud | |
- name: run tests in ansible collection directory | |
run: make testall | |
working-directory: .ansible/collections/ansible_collections/equinix/cloud | |
env: | |
METAL_AUTH_TOKEN: ${{ secrets.METAL_AUTH_TOKEN }} | |