Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stanfordnlp/stanza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ38 <J38@users.noreply.github.com>2021-09-10 12:55:56 +0300
committerGitHub <noreply@github.com>2021-09-10 12:55:56 +0300
commitb4f9251bbfc451d059cb6a2674ca0563ca012a4b (patch)
tree44e33e884ebcc89c14ff92e2f7a2a228222db50a /.github
parent46253376dfc3ae6ecef0cc84044922d7093ea17c (diff)
Delete demo.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/demo.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml
deleted file mode 100644
index 70038ed6..00000000
--- a/.github/workflows/demo.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Run Stanza Tests
-on: [push]
-jobs:
- Run-Stanza-Tests:
- runs-on: self-hosted
- 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 hosted by GitHub!"
- - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- - name: Check out repository code
- uses: actions/checkout@v2
- - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- - name: Run demo
- run: |
- # set up environment
- bash
- . /home/stanzabuild/miniconda3/etc/profile.d/conda.sh
- # install from stanza repo being evaluated
- pwd
- pip install -e .
- # set up for tests
- rm -rf /home/stanzabuild/stanza-github-actions/actions-runner/_work/stanza/stanza/stanza_test
- source stanza/tests/setup_test.sh
- # run tests
- echo "Running tests..."
- export CUDA_VISIBLE_DEVICES=2
- pytest stanza/tests/test_depparse.py
- pytest stanza/tests/test_ner_tagger.py
- echo "This currently works!"
-
- - run: echo "🍏 This job's status is ${{ job.status }}."