Skip to content

Commit

Permalink
Add Github Workflows support
Browse files Browse the repository at this point in the history
  • Loading branch information
janoc committed Dec 13, 2023
1 parent f738d5f commit 836fd75
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 16 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/CI.yml
@@ -0,0 +1,27 @@
name: CI
on:
push:
branches:
- master
pull_request:
release:
types:
- created

jobs:
build-linux:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: "actions/checkout@v3"
- name: Install dependencies
if: matrix.os == 'ubuntu-latest' || matrix.os == 'debian-latest'
run: |
sudo apt-get update
sudo apt-get -y install libsdl1.2-dev
- name: Build
run: |
make
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
libndofdev
==========

[![Build Status](https://travis-ci.org/janoc/libndofdev.svg?branch=master)](https://travis-ci.org/janoc/libndofdev)
[![CI](https://github.com/janoc/libndofdev/actions/workflows/CI.yml/badge.svg)](https://github.com/janoc/libndofdev/actions/workflows/CI.yml)

Linux support for the 3Dconnexion SpaceBall, SpaceNavigator and joysticks in the SecondLife clients

Expand Down

0 comments on commit 836fd75

Please sign in to comment.