Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI
on: [push]
jobs:
test:
name: Julia CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: "1"
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
# - uses: julia-actions/julia-processcoverage@v1
# - uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./lcov.info
# flags: unittests
# name: codecov-umbrella
# fail_ci_if_error: true
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Stackelberg Control Hypotheses Filtering

[![CI](https://github.com/CLeARoboticsLab/StackelbergControlHypothesesFiltering/actions/workflows/ci.yaml/badge.svg)](https://github.com/CLeARoboticsLab/StackelbergControlHypothesesFiltering/actions/workflows/ci.yaml)

## Setup

This repo is structured as a Julia package. To activate this package, type
Expand Down