Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkztsff committed May 31, 2024
1 parent 0546598 commit a29ee5f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/check.yml

This file was deleted.

Empty file added .github/workflows/pr.yml
Empty file.
23 changes: 23 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: on_push

on: push

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.11.9
architecture: x64
- name: Checkout PyTorch
uses: actions/checkout@master
- name: Install flake8
run: pip install flake8
- name: Run flake8
uses: suo/flake8-github-action@releases/v1
with:
checkName: 'lint'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a29ee5f

Please sign in to comment.