Skip to content

Commit

Permalink
workflow only on python310
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Araripe committed Jan 5, 2024
1 parent 9d6e2a9 commit fde99cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dev_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.10',' 3.11']
python-version: ['3.10']
defaults:
run:
shell: bash
Expand All @@ -31,13 +31,13 @@ jobs:
run: |
if [ "${{ runner.os }}" = "macOS" ]; then
wget http://www.clustal.org/omega/clustal-omega-1.2.3-macosx -O clustalo && chmod +x clustalo
brew install mafft
brew install mafft && unset MAFFT_BINARIES
elif [ "${{ runner.os }}" = "Linux" ]; then
wget http://www.clustal.org/omega/clustalo-1.2.4-Ubuntu-x86_64 -O clustalo && chmod +x clustalo
wget https://mafft.cbrc.jp/alignment/software/mafft-7.520-linux.tgz -O mafft.tgz && tar -xzvf mafft.tgz && chmod +x mafft-linux64/mafftdir/bin/mafft
export PATH=$PATH:$PWD/mafft-linux64/mafftdir/bin/:$PWD
export MAFFT_BINARIES=$PWD/mafft-linux64/mafftdir/libexec/
fi
export PATH=$PATH:$PWD/mafft-linux64/mafftdir/bin/:$PWD
export MAFFT_BINARIES=$PWD/mafft-linux64/mafftdir/libexec/
clustalo --version # For debugging clustalo version
mafft --version # For debugging mafft version
Expand Down

0 comments on commit fde99cb

Please sign in to comment.