Updates Turtle tests to use triple term syntax and reifications #79
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: Automatic Report and Test Manifest Generation | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Generate Reports using Ruby | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.2 | |
- name: Install dependencies | |
run: bundle install | |
- name: Generate Test Manifests | |
run: bundle exec rake | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Automated manifest generation | |
commit_user_name: Report generation bot | |
commit_user_email: <> | |