build: adding working directory #35
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: Continuous Integration (CI) | |
on: pull_request | |
env: | |
# Forcing Earthly to use colours, to make reading output easier. | |
FORCE_COLOR: 1 | |
jobs: | |
shell-formatting: | |
name: Shell Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.8.4. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.4/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check Shell formatting. | |
run: earthly --ci +check-shell-formatting | |
yaml-formatting: | |
name: YAML Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.8.4. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.4/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check YAML formatting. | |
run: earthly --ci +check-yaml-formatting | |
shell-linting: | |
name: Shell Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.8.4. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.4/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check Shell formatting. | |
run: earthly --ci +check-shell-linting | |
e2e-test: | |
name: End to End Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.8.4. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.4/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: End to end test. | |
run: earthly --ci +e2e-test |