Promote repo to official skainet-coding-skills under MIT #2
This file contains hidden or 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
| name: verify-citations | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out skainet-coding-skills | |
| uses: actions/checkout@v4 | |
| with: | |
| path: skainet-coding-skills | |
| - name: Check out SKaiNET (sibling) | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: SKaiNET-developers/SKaiNET | |
| path: SKaiNET | |
| ref: main | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Run citation check | |
| working-directory: skainet-coding-skills | |
| run: python3 tools/verify-citations.py --skainet-root ../SKaiNET |