mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
27 lines
449 B
YAML
27 lines
449 B
YAML
name: Run make test for automake branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- automake
|
|
schedule:
|
|
- cron: '30 9 * * *'
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: automake
|
|
- name: init
|
|
run: sh ./build.sh init
|
|
- name: make
|
|
run: make
|
|
- name: make test
|
|
run: cd test ; make test
|