docs: update improve.md with folding suggestions feature and add conf… #2849
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: Build-and-test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
uses: actions/checkout@v2 | |
- id: dockerx | |
name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- id: build | |
name: Build dev docker | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./docker/Dockerfile | |
push: false | |
load: true | |
tags: codiumai/pr-agent:test | |
cache-from: type=gha,scope=dev | |
cache-to: type=gha,mode=max,scope=dev | |
target: test | |
- id: test | |
name: Test dev docker | |
run: | | |
docker run --rm codiumai/pr-agent:test pytest -v tests/unittest | |