install jdk with mise #57
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
# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions | |
name: Zenith Example | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Dagger Zenith | |
run: | | |
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.12.5 sh | |
sudo mv bin/dagger /usr/local/bin | |
dagger version | |
- name: Run Dagger Pipelines | |
run: | | |
dagger call -vvv assemble-release --src . --output=. | |
dagger call -vvv bundle-release --src . --output=. | |
dagger call -vvv assemble-debug --src . --output=. | |
dagger call -vvv lint-debug --src . | |
working-directory: example |