Skip to content

Commit

Permalink
docs: fix references to chartboost action (#7)
Browse files Browse the repository at this point in the history
Minor fix to documentation -- looks like you missed a few chartboost
references.
  • Loading branch information
DavidJFelix authored Oct 1, 2024
1 parent 61703ed commit d0a0e81
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
- uses: astral-sh/ruff-action@v1
```
## Advanced Usage
Expand All @@ -56,31 +56,31 @@ for details
### Use a different ruff version

```yaml
- uses: chartboost/ruff-action@v1
- uses: astral-sh/ruff-action@v1
with:
version: 0.2.2
```

### Specify a different source directory

```yaml
- uses: chartboost/ruff-action@v1
- uses: astral-sh/ruff-action@v1
with:
src: "./src"
```

### Use `ruff format`

```yaml
- uses: chartboost/ruff-action@v1
- uses: astral-sh/ruff-action@v1
with:
args: "format --check"
```

### Only run ruff on changed files

```yaml
- uses: chartboost/ruff-action@v1
- uses: astral-sh/ruff-action@v1
with:
changed-files: "true"
```
Expand Down

0 comments on commit d0a0e81

Please sign in to comment.