mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 19:44:44 +00:00
23 lines
347 B
YAML
23 lines
347 B
YAML
name: Mole Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install bats-core
|
|
run: |
|
|
brew update
|
|
brew install bats-core
|
|
|
|
- name: Run test suite
|
|
run: tests/run.sh
|