draft: sketched out SO interface CI workflow. #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: interface-ci | ||
on: [pull_request] | ||
jobs: | ||
check-so-interface: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./tests/ci | ||
steps: | ||
- name: Check out the repository to the runner | ||
uses: actions/checkout@v4 | ||
- name: Check SO interface spec | ||
run: python ./check_so_interface.py |