Skip to content

Adjusting bitness tests in test_ast.c #30

Adjusting bitness tests in test_ast.c

Adjusting bitness tests in test_ast.c #30

name: Continuous Integration v2.x
#trigger when these occur
on:
push:
branches:
- dev
pull_request:
types:
- opened
- edited
- reopened
branches:
- dev
workflow_dispatch:
#testing the CI workflows while nothing is functional yet
jobs:
test-ubuntu-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: make tests (ubuntu)
run: make tests
test-windows-latest:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: make tests (windows)
run: make tests
test-macos-latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: make tests (macos)
run: make tests