Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into pr/391
Browse files Browse the repository at this point in the history
  • Loading branch information
Amazinite committed May 18, 2024
2 parents 773cefe + 18ce192 commit 0ae09c0
Show file tree
Hide file tree
Showing 110 changed files with 1,857 additions and 586 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Don't export certain files via `git archive` (e.g. via "Download ZIP")
.gitattributes export-ignore
.github export-ignore
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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'
Loading

0 comments on commit 0ae09c0

Please sign in to comment.