Skip to content

Commit

Permalink
added test_task.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtn-fa committed Apr 19, 2024
1 parent e6ab2dd commit b5b2266
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test_task.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

0 comments on commit b5b2266

Please sign in to comment.