Skip to content

Commit 183de89

Browse files
committed
Add CI
1 parent 80ab6e7 commit 183de89

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-24.04
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: setup
13+
run: |
14+
sudo apt update
15+
sudo apt install -y python3-can python3-serial python3-setuptools python3-pyelftools python3-qtpy python3-wheel python3-importlib-metadata python3-scipy
16+
wget http://security.ubuntu.com/ubuntu/pool/universe/n/ncurses/libtinfo5_6.3-2ubuntu0.1_amd64.deb
17+
sudo apt install -y ./libtinfo5_6.3-2ubuntu0.1_amd64.deb
18+
- name: test
19+
run: ./travis-ci.sh

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The fdcanusb provides a USB 2.0 full speed interface to an FDCAN bus. It presen
44

55
The designs and firmware are licensed under the Apache 2.0 License.
66

7-
* [![Build Status](https://travis-ci.org/mjbots/fdcanusb.svg?branch=master)](https://travis-ci.org/mjbots/fdcanusb)
7+
* [![CI Status](https://github.com/mjbots/fdcanusb/actions/workflows/ci.yml/badge.svg)](https://github.com/mjbots/fdcanusb/actions/workflows/ci.yml)
88

99
Pre-assembled hardware can be purchased at https://mjbots.com/products/fdcanusb
1010

0 commit comments

Comments
 (0)