Skip to content

Commit

Permalink
feat: add github action for testing integration
Browse files Browse the repository at this point in the history
  • Loading branch information
rYuuk committed Sep 5, 2023
1 parent 4a1b8a1 commit 13bba20
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run Tests

on:
push:
branches:
- main
- develop
- release/*
jobs:
runAllTests:
name: Integration tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Branch name
run: echo running on branch ${GITHUB_REF##*/}
- name: Checkout Unity-SDK Repository
uses: readyplayerme/rpm-unity-empty-project/.github/actions/integration-test-runner@main
with:
targetBranch: ${GITHUB_REF##*/}

0 comments on commit 13bba20

Please sign in to comment.