update README with new artifact url https://github.com/SiEPIC/openEBL… #3
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: Case Sensitivity check | |
on: | |
push: | |
paths: | |
- 'submissions/**.gds' | |
- 'submissions/**.GDS' | |
- 'submissions/**.oas' | |
- 'submissions/**.OAS' | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
case-sensitivity_job: | |
runs-on: ubuntu-latest | |
name: check-file-case-sensitivity | |
steps: | |
# Checkout the source code so we have some files to look at. | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# Run the case checker action | |
- name: Check Case Sensitivity | |
uses: credfeto/[email protected] | |