Bump flake8 from 7.1.0 to 7.1.1 #284
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '**' | |
pull_request: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '14.21.3' | |
- run: yarn install | |
- name: set up python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.8' | |
- name: install | |
run: | | |
make install | |
harrier --version | |
- name: lint | |
run: | | |
make lint | |
- name: Check Actions | |
env: | |
TC_API_KEY: ${{ secrets.TC_API_KEY }} | |
run: python ./scripts/check_actions.py | |
- run: harrier build |