-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (24 loc) · 969 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Github Actions for testing genomicsdb.jar
# Controls when the action will run.
on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "test"
test:
strategy:
matrix:
os: [macOS-12, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Print github workspace
run: |
echo "GITHUB_WORKSPACE = $GITHUB_WORKSPACE"
echo "github.workspace = ${{ github.workspace }}"
echo "Listing github workspace..."
ls $GITHUB_WORKSPACE
echo "current working dir= `pwd`"
# Runs a single command using the runners shell
- name: Test published genomicsdb.jar
run: $GITHUB_WORKSPACE/test_genomicsdbjar.sh