ParamDev's picture
Upload folder using huggingface_hub
a01ef8c verified
raw
history blame contribute delete
717 Bytes
name: Style Checks
on:
pull_request:
types: [submitted]
# run the workflow if changes pushed to main or release branches
push:
branches:
- '**'
tags:
- '**'
paths:
- '**'
# installs dependencies and runs the linter
jobs:
style-test:
runs-on: [ aia-devops ]
container:
image: ${{ vars.GHA_IMAGE }}
env:
http_proxy: ${{ secrets.HTTP_PROXY }}
https_proxy: ${{ secrets.HTTPS_PROXY }}
no_proxy: ${{ secrets.NO_PROXY }}
# credentials:
# username: ${{ secrets.REGISTRY_USER }}
# password: ${{ secrets.REGISTRY_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Run linter
run: |
make lint