You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
613 B
28 lines
613 B
# This file describes the GitHub Actions workflow for continuous integration of Spike.
|
|
#
|
|
# See
|
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
|
|
# for API reference documentation on this file format.
|
|
|
|
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
|
|
jobs:
|
|
test:
|
|
name: Test Spike build
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Dependencies
|
|
run: sudo xargs apt-get install -y < .github/workflows/apt-packages.txt
|
|
|
|
- run: ci-tests/test-spike
|
|
|