[go: nahoru, domu]

Skip to content

Commit

Permalink
Add basic Github Actions workflow
Browse files Browse the repository at this point in the history
Differences to the travis-ci.org CI:
- No gdb backtraces
- No coveralls support

These can be added back in later

Contributes towards luvit#1141
  • Loading branch information
squeek502 committed Jun 26, 2021
1 parent 03c2628 commit fc73a7b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: [push, pull_request, workflow_dispatch]

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

steps:
- uses: actions/checkout@v2
- name: Build
run: make luvit
- name: Test
run: make test

0 comments on commit fc73a7b

Please sign in to comment.