danger / kotlin

⚠️ Stop saying "you forgot to …" in code review
MIT License
490 stars 48 forks source link

Update README.md with correct advise for using the docker image in GHA #284

Closed r0adkll closed 2 weeks ago

r0adkll commented 2 weeks ago

The current advice for using the docker image, post v1.3.0, is incorrect for GitHub actions as it will error saying you can't use uses and run in the same step.

Instead you must setup the image as a container: on the job and then execute the runs in a step

You can see an example of this working on my PR here: https://github.com/r0adkll/kimchi/pull/11

Roha911 commented 2 weeks ago

Hot