Edit file to force workflow run #173
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
on: | |
push: | |
paths: | |
- 'dataset/**' | |
- 'scripts/**' | |
- 'source/**' | |
pull_request: | |
paths: | |
- 'dataset/**' | |
- 'scripts/**' | |
- 'source/**' | |
name: Build | |
jobs: | |
build_and_test_windows: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up MSYS2 | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: >- | |
make | |
mingw-w64-x86_64-gcc | |
file | |
- name: Build trimal for Windows x86_64 | |
run: | | |
cd source | |
make -f makefile.Windows | |
file trimal.exe | |
file readal.exe | |
file statal.exe | |
cd .. | |
./source/trimal.exe -in dataset/example.004.AA.fasta -gappyout > test_msas/gappyout/example.004.AA.fasta | |
cat test_msas/gappyout/example.004.AA.fasta |