Skip to content

Commit

Permalink
Add GitHub Actions workflow. Remove Travis-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aw committed Dec 3, 2019
1 parent 1131098 commit 1a455ba
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

timeout-minutes: 5

strategy:
matrix:
arch: ['src', 'src64']
version: ['17.12', '18.6', '18.12', '19.6', 'latest']

steps:
- uses: actions/checkout@v1
- uses: aw/picolisp-action@v1
with:
version: ${{matrix.version}}
architecture: ${{matrix.arch}}

- name: Run the tests on PicoLisp ${{matrix.arch}} v${{matrix.version}}
run: make check
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 1a455ba

Please sign in to comment.