GLITCH 2.0.0 #131
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: Run Python Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '2.7.4' | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: 'stable' | |
| cache-dependency-path: glitch/rego/rego_python/src/rego_python/go/go.sum | |
| - name: Build Rego library | |
| run: | | |
| cd glitch/rego/rego_python/src/rego_python/go | |
| GOOS=linux GOARCH=amd64 go build -o "../bin/librego-linux-amd64.so" -buildmode=c-shared regolib.go | |
| rm -f ../bin/librego-*.h | |
| - name: Install Python 3 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.10.5 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e . | |
| python -m pip install pytest | |
| - name: Run tests with pytest | |
| run: python -m pytest tests |