Bump pylint from 3.0.3 to 3.3.1 in /backend #303
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Review details | |
'on': | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
env: | |
CURRENT_BRANCH: '${{ github.event.pull_request.head.ref }}' | |
PROJECT_TITLE: 'Demo Project test (pr-${{ github.ref_name }})' | |
TEST_DIR: 'demo-test' | |
jobs: | |
commenton_on_pr: | |
runs-on: ubuntu-latest | |
name: Comment test details on PR | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Comment PR | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: | | |
Hello, and thank you for contributing to the Upsun demo project! | |
### Setting up tests | |
Until all tests pass, a pull request will not be merged. | |
Build tests for combinations of Python and Node.js will happen automatically, and must pass in order to merge. | |
Another test will actually runthrough all steps of the demo on a new project, but requires a repository admin to add the `runthrough` label to the pull request. | |
### Failing tests | |
If your PR is failing, see the [Running tests](https://github.com/platformsh/demo-project#running-tests) section of the README for troubleshooting details. | |
### Reviewing these changes locally: | |
1. Clone this repo | |
```bash | |
git clone -b ${{ env.CURRENT_BRANCH }} [email protected]:platformsh/demo-project.git ${{ env.TEST_DIR }}-${{ env.CURRENT_BRANCH }} && cd ${{ env.TEST_DIR }}-${{ env.CURRENT_BRANCH }} | |
``` | |
1. Create a project on Upsun: | |
```bash | |
upsun project:create --title "${{ env.PROJECT_TITLE }}" --default-branch ${{ env.CURRENT_BRANCH }} | |
``` | |
This command will set the local repository remote automatically, but you will need to specify the organization and region. | |
1. Push to Upsun: | |
```bash | |
upsun push | |
``` |