diagnosing why the behaviour is different for rdflib #41
Workflow file for this run
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
name: model-test | |
on: | |
push: | |
branches: | |
- test-workflow | |
jobs: | |
model-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: '3.x' | |
cache: 'pip' | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'oracle' | |
java-version: '17' | |
- name: Launch model tests | |
run: | | |
pip install -r .acimov/model-test/requirements.txt | |
python .acimov/model-test/complete-test.py --mode=actions --DEV_USERNAME=${{ github.actor }} --REPO_URI=${{ github.server_url }}/${{ github.repository }} --BRANCH=${{ github.ref_name }} | |
- name: Commit the report | |
run: | | |
git config --global user.email "no-reply@github.com" | |
git config --global user.name "Github Actions" | |
git add .acimov/output/actions.ttl .acimov/output/actions.md -f | |
git commit -m "Provide automatic model test report" | |
git remote set-url origin ${{ github.server_url }}/${{ github.repository }} | |
git push |