-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12220d7
commit 7f775d6
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Github FORCE run tests | ||
run-name: ${{ github.actor }} is testing out FORCE | ||
on: [push, pull_request] | ||
jobs: | ||
Runtests-FORCE-Linux: | ||
runs-on: [self-hosted, linux] | ||
steps: | ||
- run: echo " The job was automatically triggered by a ${{ github.event_name }} event." | ||
- run: echo " This job is now running on a ${{ runner.os }} server" | ||
- run: echo " The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- run: pwd | ||
- run: ./initalize_tests.sh | ||
- run: ./run_tests |