Skip to content

chore: add support for validating README files for modules #11

chore: add support for validating README files for modules

chore: add support for validating README files for modules #11

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
# Cancel in-progress runs for pull requests when developers push new changes
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
validate-contributors:
runs-on: ubuntu-latest
env:
actor: ${{ github.actor }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Feeling cute. Might (aka should) delete later
run: git branch --show-current
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23.2"
- name: Validate contributors
run: go build ./cmd/readmevalidation && ./readmevalidation
- name: Remove build file artifact
run: rm ./readmevalidation