Skip to content

Merge pull request #1 from ynput/unit-test #49

Merge pull request #1 from ynput/unit-test

Merge pull request #1 from ynput/unit-test #49

Workflow file for this run

name: Test custom action
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
env:
GH_TOKEN: ${{ secrets.CI_TOKEN }}
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
ref: ${{ vars.MAIN_BRANCH }}
fetch-depth: 0
- name: Run Pytest
# TODO try this one: https://github.com/pavelzw/pytest-action
run: |
pip install pytest pytest-cov
pytest
run-action:
runs-on: ubuntu-latest
needs:
- run-unit-tests
steps:
- name: Run action
id: test-action
uses: ynput/github-data@unit-test
with:
repo: "ynput/ayon-addon-action-testing"
date: "2024-08-20T12:03:23Z"
query_parameters: "body,labels,title"
- name: Show results
run: |
echo "RAW-response: " && echo '${{ steps.test-action.outputs.raw-output }}'
echo "Labels: " && echo '${{ steps.test-action.outputs.label-list }}'
echo "Bump-increment: " && echo '${{ steps.test-action.outputs.label-list }}'
# echo "Changelog: " && echo '${{ steps.test-action.outputs.changelog-markdown }}'