mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 12:41:46 +00:00
21 lines
327 B
YAML
21 lines
327 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install tools
|
|
run: brew install bats-core shfmt shellcheck
|
|
|
|
- name: Run all checks
|
|
run: ./scripts/check.sh
|