Skip to content

Initial archdetect support for RISC-V and custom init script for RISC-V repo #71

Initial archdetect support for RISC-V and custom init script for RISC-V repo

Initial archdetect support for RISC-V and custom init script for RISC-V repo #71

Workflow file for this run

# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: Tests for consistency of README.md
on:
push:
paths:
- README.md
- init/eessi_defaults
pull_request:
paths:
- README.md
- init/eessi_defaults
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Check out software-layer repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: verify if README.md is consistent with EESSI_VERSION from init/eessi_defaults
run: |
source init/eessi_defaults
grep "${EESSI_VERSION}" README.md
- name: verify if README.md is consistent with EESSI_CVMFS_REPO from init/eessi_defaults
run: |
source init/eessi_defaults
grep "${EESSI_CVMFS_REPO}" README.md