Update PR.yaml #22
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: Main Branch PR | |
on: | |
pull_request: | |
branches: | |
- feature/extract-orderstatusprovider | |
jobs: | |
Build-Code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: download code | |
with: | |
fetch-depth: 0 | |
- name: build the devcontainer | |
uses: ./.github/actions/build-devcontainer | |
# export of cargo path in each step is required because it is not when exported in bootstraph.sh script | |
- name: install cluster and workloads | |
run: | | |
docker exec devcontainer sh -c "export PATH="/root/.cargo/bin:$PATH" && cd ./workspace && make fmt && make" |