Skip to content

Merge branch 'dev' of github.com:ncbi/stxtyper into dev #21

Merge branch 'dev' of github.com:ncbi/stxtyper into dev

Merge branch 'dev' of github.com:ncbi/stxtyper into dev #21

Workflow file for this run

name: MacOS C++ CI
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: prerequisites
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install blast
- name: make
run: make
- name: test
run: ./test_stxtyper.sh
- name: Upload artifacts on failure
uses: actions/upload-artifact@v4
if: ${{ failure() }} # only run if the job fails
with:
name: stxtyper-failed-test-macos
path: |
./*
test/*
retention-days: 14