Skip to content

Merge pull request #7 from Cyclenerd/dependabot/pip/transformers-4.32.1 #36

Merge pull request #7 from Cyclenerd/dependabot/pip/transformers-4.32.1

Merge pull request #7 from Cyclenerd/dependabot/pip/transformers-4.32.1 #36

Workflow file for this run

name: "CI"
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
name: CI/CD Test
# https://github.com/actions/virtual-environments/
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v3
- name: Install dependencies 🔧
run: sudo apt-get install flake8
- name: 🛎️ Checkout
uses: actions/checkout@v3
# Check Bash scripts
- name: Bash 🔎
run: shellcheck *.sh
# Check Python code
- name: Python 🔎
run: flake8 --ignore=W292 --max-line-length=127 --show-source --statistics *.py