Nacho/ci test #177
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: GitHub Actions CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test1: | |
name: compute, satellite-proxy, canary, runner | |
runs-on: ubuntu-latest | |
env: | |
EARTHLY_TOKEN: "${{ secrets.EARTHLY_TOKEN }}" | |
EARTHLY_ORG: "earthly-technologies" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: test | |
run: |- | |
which git && \ | |
git status && \ | |
git rev-parse --show-toplevel && \ | |
git config --get remote.origin.url && \ | |
git rev-parse HEAD && \ | |
git rev-parse --short=8 HEAD && \ | |
git rev-parse --abbrev-ref HEAD && \ | |
echo "--format=%at" && \ | |
git log -1 --format=%at && \ | |
echo "--format=%ct" && \ | |
git log -1 --format=%ct && \ | |
echo "--format=%ae" && \ | |
git log -1 --format=%ae && \ | |
echo "--format=%b" && \ | |
git log -1 --format=%b && \ | |
git for-each-ref --contains HEAD --format '%(refname:lstrip=-1)' && \ | |
env |