Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SatoshiImai committed Sep 21, 2023
1 parent 68c7699 commit d29d569
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,21 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install test dependencies
run: python -m pip install -U tox

- name: Install Requirements
run: |
python -m pip install --upgrade pip
run: python -m pip install -U tox
pip install -r dev_requirements.txt
pip install -r requirements.txt
- name: Test
run: python -m tox -e py

- name: Assign veriables to Env variable
run: |
cat ci_environments.txt >> $GITHUB_ENV
- name: Lint with flake8
run: |
flake8 --exit-zero --ignore=${{ env.flake8_ignore }} --max-complexity=${{ env.max_complexity }} --max-line-length=${{ env.max_line_length }} --exclude=.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,nowcast --output-file=flake8.txt .
Expand Down

0 comments on commit d29d569

Please sign in to comment.