Skip to content

Replace Travis CI with GitHub actions #1

Replace Travis CI with GitHub actions

Replace Travis CI with GitHub actions #1

Workflow file for this run

name: ci
on:
pull_request:
push:
tags:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup Cpp
uses: aminya/setup-cpp@v1
- name: Build and test
run: make test
- name: Examples
run:
- make -C examples/linear_algebra test

Check failure on line 27 in .github/workflows/.ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/.ci.yml (Line: 27, Col: 11): A sequence was not expected
- make -C examples/resample benchmark