cli=13.7.1 #2
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
name: Health check poja | |
# Fails if poja is not latest or generation is not idempotent | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
java-version: '21' | |
distribution: 'corretto' | |
- run: chmod +x gradlew | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Configure AWS Credentials | |
uses: aws-actions/[email protected] | |
with: | |
aws-access-key-id: ${{ secrets.POJA_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.POJA_AWS_SECRET_ACCESS_KEY }} | |
aws-region: eu-west-3 | |
- name: Connect to Private Codeartifact | |
run: | | |
aws codeartifact login --tool pip --repository numer-python-store --domain python-numer-tech --domain-owner 088312068315 --region eu-west-3 | |
- run: pip install poja --upgrade | |
- run: python -m poja --poja-conf poja.yml --output-dir=. --github-username=${{ secrets.POJA_GH_USERNAME }} --github-token=${{ secrets.POJA_GH_TOKEN }} | |
- run: git diff --exit-code |