This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
build: changing modules targets to 'verb-noun' style #111
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: | |
clean-git-history: | |
name: Clean Git History | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Check clean Git history. | |
run: earthly --ci +check-clean-git-history --from_reference "origin/${{ github.base_ref }}" | |
go-formatting: | |
name: Go Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check formatting. | |
run: earthly --ci +check-go-formatting | |
sh-formatting: | |
name: Sh Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check formatting. | |
run: earthly --ci +check-sh-formatting | |
yaml-formatting: | |
name: YAML Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check formatting. | |
run: earthly --ci +check-yaml-formatting | |
go-linting: | |
name: Go Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check linting. | |
run: earthly --ci +check-go-linting | |
sh-linting: | |
name: Sh Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check linting. | |
run: earthly --ci +check-sh-linting | |
modules: | |
name: Modules | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Check modules. | |
run: earthly --ci +check-modules | |
compile-darwin-amd64: | |
name: Compile Darwin AMD64 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Compile Darwin AMD64. | |
run: earthly --ci +compile-darwin-amd64 | |
compile-linux-amd64: | |
name: Compile Linux AMD64 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Compile Linux AMD64. | |
run: earthly --ci +compile-linux-amd64 | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Earthly v0.7.17. | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.17/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Unit test. | |
run: earthly --ci +unit-test |