mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
17 lines
259 B
YAML
17 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
|