Skip to content

Commit

Permalink
Add GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed May 29, 2024
1 parent 6ee38b2 commit 10b5513
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# SPDX-FileCopyrightText: None
#
# SPDX-License-Identifier: CC0-1.0

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
21 changes: 21 additions & 0 deletions .github/workflows/REUSE.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# SPDX-FileCopyrightText: None
#
# SPDX-License-Identifier: CC0-1.0

name: REUSE Compliance Check

on:
pull_request:
push:
branches:
- "master"

jobs:
reuse:
name: REUSE
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v3.0.0
31 changes: 31 additions & 0 deletions .github/workflows/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# SPDX-FileCopyrightText: 2023 Kevin Matthes
# SPDX-FileCopyrightText: 2023 Shun Sakai
#
# SPDX-License-Identifier: Apache-2.0 OR MIT

name: actionlint

on:
pull_request:
paths:
- .github/workflows/*.yaml
push:
paths:
- .github/workflows/*.yaml

permissions:
contents: read

jobs:
validation:
name: Validate
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Check no lint warnings
uses: docker://rhysd/actionlint:latest
with:
args: -color -verbose

0 comments on commit 10b5513

Please sign in to comment.