Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: 'ci'
on:
pull_request:
workflow_dispatch:
push:
branches:
- 'main'
- 'releases/*'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

permissions: {}

jobs:
ci:
name: earthly +hello
permissions:
contents: read
env:
FORCE_COLOR: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: EarthBuild/actions-setup@234ca5f9d838c6ab50ccf331f5c0da74e5626b6c
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
version: 'latest'
prerelease: true
- run: earthly +hello
Loading