Merge remote-tracking branch 'origin/main' into rlib-patches #104
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: Sanity checks | |
| on: push | |
| jobs: | |
| sanity-example: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: The example's specification is clean | |
| run: scripts/is-clean example/openbsd.toml | |
| - name: The example's README is clean | |
| run: scripts/is-clean example/README.md | |
| sanity-script: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: alpine:3.18.4 | |
| steps: | |
| - name: Install essentials | |
| run: apk add python3 | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Script is footloose and fancy-free | |
| run: scripts/load_module.py openbsd |