Skip to content

remove py38 support #1075

remove py38 support

remove py38 support #1075

Workflow file for this run

name: catch
on:
push:
branches:
- master
pull_request:
paths-ignore:
- 'doc/**'
- 'examples/**'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Create Build Environment
run: mkdir autode/ext/build
- name: Run
shell: bash
working-directory: ./autode/ext/build
env:
BUILD_TYPE: Release
run: |
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE
cmake --build . --config $BUILD_TYPE
ctest -C $BUILD_TYPE --extra-verbose