mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-11 02:43:20 +00:00
22 lines
310 B
YAML
22 lines
310 B
YAML
name: macos
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make
|
|
run: make
|
|
- name: install check
|
|
run: brew install check
|
|
- name: run tests
|
|
run: make test
|