Testing GenomicsDB 1.5.2 #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |