Edit file to force workflow run #176
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 | |
- name: Run generate_trimmed_msas.ps1 | |
run: | | |
powershell -ExecutionPolicy Bypass -File .\scripts\generate_trimmed_msas.ps1 | |
- name: Run compare_trimmed_msas.ps1 | |
run: | | |
powershell -ExecutionPolicy Bypass -File .\scripts\compare_trimmed_msas.ps1 |