Skip to content
Open
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ job:
steps:
# Check YOUR project out!
- name: "Check out repository"
uses: actions/checkout@v2
uses: actions/checkout@v3

# Prepare a build
- name: "Prepare build"
Expand Down Expand Up @@ -79,7 +79,7 @@ job:
steps:
# Check YOUR project out!
- name: "Check out repository"
uses: actions/checkout@v2
uses: actions/checkout@v3

# Prepare a build
- name: "Prepare build"
Expand Down Expand Up @@ -114,7 +114,7 @@ job:
steps:
# Check YOUR project out!
- name: "Check out repository"
uses: actions/checkout@v2
uses: actions/checkout@v3

# Prepare a build
- name: "Prepare build"
Expand Down Expand Up @@ -156,7 +156,7 @@ job:
steps:
# Check YOUR project out!
- name: "Check out repository"
uses: actions/checkout@v2
uses: actions/checkout@v3

# Prepare a build
- name: "Prepare build"
Expand Down Expand Up @@ -194,7 +194,7 @@ runs:
# automatically downloads the "after-merge" state of the pull request if
# there are no conflicts.)
- name: "Check out repository"
uses: actions/checkout@v2
uses: actions/checkout@v3

# Prepare a build
- name: "Prepare build"
Expand Down Expand Up @@ -262,7 +262,7 @@ job:
steps:
# Check YOUR project out!
- name: "Check out repository"
uses: actions/checkout@v2
uses: actions/checkout@v3

# Perform the analysis. Details vary between analysers!
# Example for "PyLint" added below!
Expand Down