Skip to content

python example: use assert instead of print #61

python example: use assert instead of print

python example: use assert instead of print #61

Workflow file for this run

name: C
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: monetdb/dev-builds:default
steps:
- uses: actions/checkout@v2
- name: Install CMake
run: |
DEBIAN_FRONTEND=noninteractive apt-get update -y
DEBIAN_FRONTEND=noninteractive apt-get install cmake -y
- name: Build
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
cmake --build . --target test
rm -rf /tmp/*csv
rm -rf C/dbx