Merge pull request #18 from InspectorIncognito/feat/EDD-3122-modify-s… #41
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: UOCT - tests | |
on: | |
push: | |
branches: | |
- dev | |
- main | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
branches: | |
- dev | |
- main | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
test-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repo checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Build and run tests | |
if: github.event_name == 'pull_request' || (github.event_name == 'push' && !contains(github.event.head_commit.message, 'Merge pull request')) | |
run: make test |