Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Apr 28, 2024
1 parent b61b49e commit 0965296
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/data-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: Data CI/CD

on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
branches: [ main ]
types: [ opened, reopened, synchronize ]
push:
branches: [main]
branches: [ main ]
workflow_dispatch:

jobs:
data-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: [ "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Linting

on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
branches: [ main ]
types: [ opened, reopened, synchronize ]
push:
branches: [main]
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/server-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Server CI/CD

on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
branches: [ main ]
types: [ opened, reopened, synchronize ]
push:
branches: [main]
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/webclient-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Webclient CI/CD

on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
branches: [ main ]
types: [ opened, reopened, synchronize ]
push:
branches: [main]
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ resolver = "2"

[profile.release]
strip = true
lto = "thin"
lto = "thin"

0 comments on commit 0965296

Please sign in to comment.