Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit 2925fbd

Browse files
Add installation tests (#1)
* Create blank.yml * Rename blank.yml to installations.yml * Update installations.yml
1 parent c457186 commit 2925fbd

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
# Controls when the action will run. Triggers the workflow on push or pull request
6+
# events but only for the master branch
7+
on: [pull_request, push]
8+
9+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+
jobs:
11+
# This workflow contains a single job called "build"
12+
build:
13+
# The type of runner that the job will run on
14+
runs-on: ubuntu-latest
15+
16+
# Steps represent a sequence of tasks that will be executed as part of the job
17+
steps:
18+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
19+
- uses: actions/checkout@v2
20+
21+
# Runs a single command using the runners shell
22+
- name: Test installations
23+
run: sh startup.sh

0 commit comments

Comments
 (0)