diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml new file mode 100644 index 0000000..cb0e79d --- /dev/null +++ b/.github/workflows/linux.yml @@ -0,0 +1,22 @@ +name: linux-x64-gcc +on: [push, pull_request] +jobs: + linux-x64-gcc: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.12] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: install dependencies + run: | + pip install --upgrade pip + pip install -v -e . + pip install coveralls nose + - name: cpu-test + run: nosetests -s --with-coverage