services-flake/.github/workflows/ci.yaml
Sridhar Ratnakumar 0c4ffc18c4
chore: test our CI
2024-09-16 12:51:13 -04:00

20 lines
499 B
YAML

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
checks:
runs-on: ${{ matrix.system }}
permissions:
contents: read
strategy:
matrix:
# Intel mac excluded; See https://github.com/juspay/services-flake/issues/231
system: [ x86_64-linux, aarch64-darwin ]
steps:
- uses: actions/checkout@v4
- name: om ci
run: om ci --extra-access-tokens "github.com=${{ secrets.GITHUB_TOKEN }}" run --systems "${{ matrix.system }}"