Skip to content

Commit

Permalink
add github actions config
Browse files Browse the repository at this point in the history
  • Loading branch information
oldk1331 committed Nov 24, 2020
1 parent 0416b68 commit 107bd02
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: FriCAS CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- name: install dependencies
run: sudo apt-get install sbcl libxpm-dev
- name: configure
run: ./configure --with-lisp=sbcl --with-gmp --with-x
- name: make
run: make -j2 --output-sync
- name: make check
run: make check -j2 --output-sync

0 comments on commit 107bd02

Please sign in to comment.