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 483eb2a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 18 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.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Unit Testing framework for PicoLisp

[![GitHub release](https://img.shields.io/github/release/aw/picolisp-unit.svg)](https://github.com/aw/picolisp-unit) [![Build Status](https://travis-ci.org/aw/picolisp-unit.svg?branch=master)](https://travis-ci.org/aw/picolisp-unit)
[![GitHub release](https://img.shields.io/github/release/aw/picolisp-unit.svg)](https://github.com/aw/picolisp-unit) ![Build status](https://github.com/aw/picolisp-unit/workflows/CI/badge.svg?branch=master)

This library can be used for Unit Testing your [PicoLisp](http://picolisp.com/) code.

Expand All @@ -21,8 +21,8 @@ Please read [EXPLAIN.md](EXPLAIN.md) to learn more about PicoLisp and this Unit

# Requirements

* PicoLisp 32-bit or 64-bit v3.1.9+
* Tested up to PicoLisp v18.12
* PicoLisp 32-bit or 64-bit `v3.1.9+`
* Tested up to PicoLisp `v19.11.25`, [see test runs](https://github.com/aw/picolisp-unit/commit/1a455ba10058dffacfb3d4ef930c89ee82a57a83/checks)

# Getting Started

Expand Down

0 comments on commit 483eb2a

Please sign in to comment.