Fix #6 - Make the compiler flags configurable #15
Workflow file for this run
This file contains 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, pull_request] | |
jobs: | |
build-ubuntu-latest: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
server_version: ['unstable', '8.0.0'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set the server version for python integration tests | |
run: echo "SERVER_VERSION=${{ matrix.server_version }}" >> $GITHUB_ENV | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build and Run tests. | |
run: ./build.sh |