Skip to content

Commit

Permalink
Travis -> GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed May 19, 2024
1 parent 98da027 commit b81a176
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 16 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: C/C++ CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure
run: mkdir build && cd build && cmake -DCOMPILER=native -DCMAKE_BUILD_TYPE=Release -DNO_BOOST_GRAPH=1 ..
- name: Build
run: cmake --build build
- name: Run tests
run: cmake --build build --target test
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build status](https://github.com/JohannesLorenz/sca-toolsuite/actions/workflows/build.yml/badge.svg)](https://github.com/JohannesLorenz/sca-toolsuite/actions/workflows/build.yml)

# Greetings
Welcome! Thank you for considering the README file.

Expand Down

0 comments on commit b81a176

Please sign in to comment.