mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2026-02-04 03:19:21 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
460 B
YAML
22 lines
460 B
YAML
name: validate codemeta
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- codemeta.json
|
|
- .github/workflows/codemeta_validate.yaml
|
|
pull_request:
|
|
paths:
|
|
- codemeta.json
|
|
- .github/workflows/codemeta_validate.yaml
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: gitlab-registry.in2p3.fr/escape2020/wp3/eossr:v1.0
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: validate codemeta
|
|
run: eossr-metadata-validator codemeta.json
|