ci: enable integ tests in ci workflow #4
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: Continuous Integration Workflow | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test_job: | |
runs-on: ubuntu-latest | |
name: A job to run the Ys tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Test action step | |
id: test | |
uses: ./.github/actions/test | |
- name: Get the output data | |
run: echo "ls -la results ${{ steps.test.outputs.files }}" |