Skip to content

[pre-commit.ci] pre-commit autoupdate #160

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #160

Workflow file for this run

name: test
on:
push:
branches:
- "master"
- "test-me-*"
pull_request:
branches:
- "master"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
compile:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
gtest_ver: [ "1.11.0" ]
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.8"
- name: Install GoogleTest
run: |
wget https://github.com/google/googletest/archive/release-${{ matrix.gtest_ver }}.tar.gz
tar -zxvf release-${{ matrix.gtest_ver }}.tar.gz
cd googletest-release-${{ matrix.gtest_ver }}
mkdir build
cd build
cmake ..
sudo make install
- name: Install Boost.Test
run: |
sudo apt-get update
sudo apt-get install libboost-test-dev valgrind
- name: Compile
run: |
python -m pip install --upgrade pip
pip install scons
scons -j4 -C tests
- name: Upload compilation results
uses: actions/upload-artifact@v2
with:
name: tests
if-no-files-found: error
retention-days: 1
path: |
tests/
!tests/**/*.py
!tests/**/*.cpp
!tests/**/*.xml
!tests/**/*.o
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and Check Package
uses: hynek/build-and-inspect-python-package@v1.5
test:
needs: [compile, package]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Download compiled tests
uses: actions/download-artifact@v3
with:
name: tests
path: tests
- name: Download Package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist
- name: Install Tox
run: |
chmod a+x -R tests
pip install tox
- name: Test
shell: bash
run: |
tox run -e py --installpkg `find dist/*.tar.gz`