Merge pull request #1440 from publiccodenet/update-community-call-agenda #3934
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-2024 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@v4 | |
- 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 |