Skip to content

Switch to Python with PR reporting #60

Switch to Python with PR reporting

Switch to Python with PR reporting #60

Workflow file for this run

name: Repository Checks
on: [ push ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Get the code from the repository to be packaged
- name: Get Repo
uses: actions/checkout@v3
# Lint the Dockerfile for syntax correctness and conformance with
# standards.
- name: Docker Lint
uses: luke142367/[email protected]
with:
target: Dockerfile
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
steps:
# Get the code from the repository to be packaged
- name: Get Repo
uses: actions/checkout@v3
- name: Run Action - Specific File
uses: ./
with:
case-path: "./tests/data/simple-case.jsonld"
case-version: "case-1.2.0"
- name: Run Action - Directory Filter
uses: ./
with:
case-path: "./tests/data/"
case-version: "case-1.2.0"
extension-filter: "jsonld"
- name: Run Action - Directory No Filter
uses: ./
with:
case-path: "./tests/data/"
case-version: "case-1.2.0"
report-in-pr: "true"