Add artifact comment to PRs #1166
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: Build | |
on: | |
push: | |
branches: | |
- master | |
- v1.* | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up AllegroGraph (Docker) | |
run: | | |
docker version | |
docker pull franzinc/agraph:v7.1.0 | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
pip freeze | |
- name: Generate new Brick ontology | |
# generate new Brick ontology (in case this hasn't been run) | |
run: | | |
make | |
cat Brick.ttl | |
- name: upload ttls | |
id: upload-ttls | |
if: matrix.python-version == '3.10' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Brick-ontology | |
path: | | |
Brick.ttl | |
- name: comment artifact | |
# if the trigger is on a pull request | |
if: github.event_name == 'pull_request' | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ github.event.number }} | |
# in the body, make a markdown link to the steps.upload-ttls.output.artifact-url | |
body: | | |
The latest build of the Brick ontology on this PR is available [here](${{ steps.upload-ttls.outputs.artifact-url }}). | |
- name: Run the tests | |
# -s flag: do not capture output (avoids killing test after 10 min) | |
run: | | |
pytest -s -vvvv --durations=0 -n auto tests |