Skip to content

Commit

Permalink
Add stub GitHub Actions workflow
Browse files Browse the repository at this point in the history
Summary: Add inital workflow to check for build failures

Reviewed By: kernelslacker

Differential Revision: D31486233

fbshipit-source-id: 34404772980eaf4004f01c050f969a9ad76a8b41
  • Loading branch information
davide125 authored and facebook-github-bot committed Oct 7, 2021
1 parent 7409f2b commit ea14017
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Continuous Integration
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build netconsd
run: make
# FIXME disable for now, the markdown docs here need lots of work
# markdown:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2
# - name: Lint Markdown
# uses: actionshub/[email protected]
# - name: Check links
# uses: gaurav-nelson/[email protected]

0 comments on commit ea14017

Please sign in to comment.