Merge pull request #3 from marinatedconcrete/renovate/earthly-earthly… #8
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: Run Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: earthly/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
# renovate: datasource=docker depName=earthly/earthly | |
version: "0.8.15" | |
- uses: actions/[email protected] | |
- name: Run lint | |
run: | | |
earthly +lint | |
env: | |
EARTHLY_CI: true | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: earthly/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
# renovate: datasource=docker depName=earthly/earthly | |
version: "0.8.15" | |
- uses: actions/[email protected] | |
- name: Run tests | |
run: | | |
earthly +test | |
env: | |
EARTHLY_CI: true |