mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 19:44:44 +00:00
24 lines
387 B
YAML
24 lines
387 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: Format code
|
|
run: ./scripts/format.sh
|
|
|
|
- name: Run all checks
|
|
run: ./scripts/check.sh
|