chore: bump version to 2.0.29-beta.1 #922
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
# Copyright (c) 2021 anatawa12 and other contributors | |
# This file is part of fixRTM, released under GNU LGPL v3 with few exceptions | |
# See LICENSE at https://github.com/fixrtm/fixRTM for more details | |
# This is a basic workflow to help you get started with Actions | |
name: License Header Check | |
on: | |
push: {} | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
license-header-check: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- uses: viperproject/check-license-header@v2 | |
with: | |
path: . | |
config: .github/license-check/header-check.json | |
strict: true |