Merge pull request #1425 from publiccodenet/yearly-schedule-2024 #3886
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
# SPDX-License-Identifier: CC0-1.0 | |
# SPDX-FileCopyrightText: 2021-2023 The Foundation for Public Code <info@publiccode.net> | |
name: Test | |
on: | |
- push | |
- pull_request | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
cibuild: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
- run: bundle install | |
- run: ./script/test-markdown.sh | |
- run: ./script/test-without-link-check.sh | |
- run: ./script/check-new-links.sh | |
- run: ./script/find-missing-spdx.sh |