changes small #5
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: CI/CD | ||
on: push | ||
ASCN: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Bio | ||
run: pip install Bio | ||
- name: Download | ||
run: python3 ASCN_Download.py nuccore test.txt | ||
PEP8: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: python:3.9 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install flake8 | ||
run: pip install flake8 | ||
- name: Run flake8 | ||
run: flake8 . |