Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Code Quality

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

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Check out action version.
You’re using actions/checkout@v4, but as of now the latest stable release is v3. Referencing a non-existent tag will cause the workflow to fail. Please verify the correct tag or switch to @v3.

-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v3

- name: Lint
run: echo "Linting..."