@@ -6,12 +6,8 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-ubuntu:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest]
|
|
||||||
fail-fast: false
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@@ -21,3 +17,15 @@ jobs:
|
|||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: make clean;make alt; make clean; make
|
run: make clean;make alt; make clean; make
|
||||||
|
|
||||||
|
build-macos:
|
||||||
|
runs-on: macos-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: get DateTime
|
||||||
|
run: sudo cpan -i DateTime
|
||||||
|
|
||||||
|
- name: build
|
||||||
|
run: make clean;make alt; make clean; make
|
||||||
|
|||||||
Reference in New Issue
Block a user