Skip to content

Commit e7c39c7

Browse files
committed
Merge branch 'dev' of https://github.com/stanfordnlp/CoreNLP into dev
2 parents 26e5457 + b0b8871 commit e7c39c7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/run-tests.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Tests
2+
on: [push]
3+
jobs:
4+
Run-CoreNLP-Tests:
5+
runs-on: self-hosted
6+
steps:
7+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
8+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
9+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
10+
- name: Check out repository code
11+
uses: actions/checkout@v2
12+
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
13+
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
14+
- name: Setup
15+
run: |
16+
pwd
17+
ant clean compile
18+
echo $CLASSPATH
19+
- name: Run Basic ITests
20+
if: always()
21+
run: |
22+
echo $CORENLP_MODELS_HOME
23+
ant itest
24+
- run: echo "All tests finished!"
25+
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)