mirror of
https://github.com/mas-cli/mas
synced 2024-11-26 21:40:19 +00:00
18 lines
259 B
YAML
18 lines
259 B
YAML
|
name: Build & Test
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build-test:
|
||
|
|
||
|
runs-on: macOS-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
- name: Bootstrap
|
||
|
run: script/bootstrap
|
||
|
- name: Build
|
||
|
run: script/build
|
||
|
- name: Test
|
||
|
run: script/test
|