Updating coordinate system, removing unnecessarily comment from sources. #5
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: CI | |
| on: | |
| push: | |
| branches: | |
| # Release branches: run QA on every push (e.g. 0.3.0) | |
| - "[0-9]*.[0-9]*.[0-9]*" | |
| jobs: | |
| qa: | |
| name: QA gate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build test image | |
| run: docker build -t reporails-test runtime/ | |
| - name: Run test harness | |
| run: | | |
| docker run --rm \ | |
| -v ${{ github.workspace }}:/rules:ro \ | |
| reporails-test |