mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
24 lines
413 B
YAML
24 lines
413 B
YAML
name: Run make test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
schedule:
|
|
- cron: '30 9 * * *'
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, ubuntu-22.04, ubuntu-20.04]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: make
|
|
run: FAKETIME_COMPILE_CFLAGS="-DFORCE_MONOTONIC_FIX" make
|
|
- name: make test
|
|
run: make test
|