-
Notifications
You must be signed in to change notification settings - Fork 238
30 lines (27 loc) · 871 Bytes
/
ruff.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: "Ruff"
on:
push:
pull_request:
# The branches below must be a subset of the branches above
schedule:
- cron: "33 1 * * 3"
jobs:
ruff:
name: "See: docs.astral.sh/ruff"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: cd and ls
run: |
cd ${{ github.workspace }}
ls -l
- name: Download ruff
run: |
wget -c https://github.com/astral-sh/ruff/releases/download/0.8.3/ruff-x86_64-unknown-linux-gnu.tar.gz
tar -xzf ruff-*.tar.gz
mv ruff-x86_64-unknown-linux-gnu/ruff .
ls -l ruff
chmod a+x ruff
- name: Run ruff
run: ./ruff check ./pyglossary ./tests/