Skip to content

Commit b3ece70

Browse files
committed
Switch from Travis CI to GitHub Actions
1 parent e86c101 commit b3ece70

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.github/workflows/boxes.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: add-packages
11+
run: |
12+
sudo apt-get update -y
13+
sudo apt-get install -y git flex bison libunistring-dev libpcre2-dev diffutils vim-common
14+
- name: make
15+
run: make
16+
- name: make test
17+
run: make test

.travis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/ascii-boxes/boxes.svg?branch=master)](https://travis-ci.org/ascii-boxes/boxes)
1+
[![Build Status](https://github.com/ascii-boxes/boxes/actions/workflows/boxes.yml/badge.svg)](https://github.com/ascii-boxes/boxes/actions/workflows/boxes.yml)
22

33
# boxes
44

0 commit comments

Comments
 (0)