fix duplicated .png
endings for effect/incipias flare/metallic hydrogen medium
#218
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: Check | |
on: | |
push: | |
branches: | |
- master | |
- releases/v[0-9]+.[0-9]+.[0-9]+ | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
validate_copyright: | |
name: Copyright | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Validate copyright file with debian-control-linter | |
uses: tibetiroka/debian-control-linter-action@v1 | |
with: | |
type: 'debian/copyright' | |
file: 'copyright' | |
preset: 'strict' | |
enable: 'trailingSpace,upstreamContactStyle,urlForceHttps,fieldNameCapitalization,maintainerNameFullStop,urlExists,copyrightSourceStyle' |