Skip to content

Commit

Permalink
new test
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Breuer <fbreuer@pm.me>
  • Loading branch information
breuerfelix committed Apr 12, 2023
1 parent 9b889d5 commit 2b4ca75
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Configure pull-through-cache
run: |
mkdir ~/.earthly
cat <<EOF > ~/.earthly/config.yml
cat <<EOF > /home/runner/.earthly/config.yml
global:
buildkit_additional_config: |
[registry."docker.io"]
Expand All @@ -38,14 +38,16 @@ jobs:
insecure = true
EOF
- name: Check earthly config
run: cat ~/.earthly/config.yml
run: cat /home/runner/.earthly/config.yml
- name: Earthly version
run: earthly --version
- name: Earthly help
run: earthly --help
- name: Earthly env
run: echo $EARTHLY_CONFIG
- name: Run Snyk
if: ${{ env.SNYK_TOKEN }}
run: earthly --ci --secret SNYK_TOKEN +snyk
- name: Run Tests
run: earthly --ci +all-except-snyk
run: EARTHLY_CONFIG=/home/runner/.earthly/config.yml earthly --ci +all-except-snyk

0 comments on commit 2b4ca75

Please sign in to comment.