Skip to content

fix up tests

fix up tests #1186

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-24.04
steps:

Check failure on line 6 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
- uses: actions/checkout@v4
- name: install bats
shell: bash
run: |
sudo apt-get update
sudo apt-get install bats bash codespell python3-argcomplete
pipx install omlmd black flake8
- name: run test
run: make test
macos:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: install golang
shell: bash
run: |
brew install go
make install-requirements
- name: Run a one-line script
shell: bash
run: make validate
# FIXME: ci script should be able to run on MAC.
# - name: Run ci
# shell: bash
# run: make ci