Skip to content

Implement Python 3.8 && 3.9 try-except-finally logic #292

Implement Python 3.8 && 3.9 try-except-finally logic

Implement Python 3.8 && 3.9 try-except-finally logic #292

Workflow file for this run

name: Linux-CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Configure and Build
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make -j4
- name: Test
run: |
cd build
make check JOBS=4