Skip to content

Commit

Permalink
Create make.yml (cloudflare#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkrasnov authored Dec 2, 2020
1 parent c2c6e2f commit 6931277
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Makefile CI

on:
push:
branches: [ gcc.amd64 ]
pull_request:
branches: [ gcc.amd64 ]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check

0 comments on commit 6931277

Please sign in to comment.