Skip to content

Commit

Permalink
Use GH actions instead
Browse files Browse the repository at this point in the history
Travis has been dead due to Oracle JDK anyway, so now is as good a time
as any!
  • Loading branch information
SquidDev committed Jan 13, 2020
1 parent 548d1d8 commit 9c32acd
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build

on: [push, pull_request]

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Build with Gradle
run: ./gradlew build --no-daemon
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cobalt [![Build Status](https://travis-ci.org/SquidDev/Cobalt.svg?branch=master)](https://travis-ci.org/SquidDev/Cobalt)
# Cobalt [![Current build status](https://github.com/SquidDev/Cobalt/workflows/Build/badge.svg)](https://github.com/SquidDev/Cobalt/actions "Current build status")

## What?
Cobalt is a fork of LuaJ 2.0 (Lua 5.1) with many features of LuaJ 3.0 backported.
Expand Down

0 comments on commit 9c32acd

Please sign in to comment.