Skip to content

Remove command from meeting-people.txt #246

Remove command from meeting-people.txt

Remove command from meeting-people.txt #246

Workflow file for this run

---
name: Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Verify meeting-people.txt is sorted
run: awk '!/^$/ {if (name) print} /^exit 0$/ { name = 1 }' meeting-people.txt | sort -c