Skip to content

refactor: refactor source code #38

refactor: refactor source code

refactor: refactor source code #38

Workflow file for this run

name: build
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
env:
FORCE_COLOR: 1
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
with:
submodules: false
fetch-depth: 0
- name: Put back the git branch into git (Earthly uses it for tagging)
run: |
branch=""
if [ -n "$GITHUB_HEAD_REF" ]; then
branch="$GITHUB_HEAD_REF"
else
branch="${GITHUB_REF##*/}"
fi
git checkout -b "$branch" || true
- name: Login to GitHub Docker
env:
DOCKER_REGISTRY: ghcr.io
DOCKER_USER: ${{ github.actor }}
DOCKER_PASS: ${{ secrets.GITHUB_TOKEN }}
run: docker login $DOCKER_REGISTRY --username "$DOCKER_USER" --password "$DOCKER_PASS"
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN}}
- name: Download latest earthly
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.7.1/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
- name: Earthly version
run: earthly --version
- name: Run Linter and Tests
env:
EARTHLY_BUILD_ARGS: "COMMIT_HASH"
COMMIT_HASH: ${{ github.sha }}
FORCE_COLOR: 1
run: |
earthly -P -use-inline-cache --save-inline-cache --strict --push +test
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out # optional
fail_ci_if_error: false # optional (default = false)
verbose: false # optional (default = false)
# - uses: go-semantic-release/action@v1
# id: semver
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# allow-initial-development-versions: true
# force-bump-patch-version: true