Sha256: eabee3a5881e8ce127030c67aa089a1a2c54bae55314ff779e89a57ad84bbdd2
Contents?: true
Size: 441 Bytes
Versions: 2
Compression:
Stored size: 441 Bytes
Contents
workflow "Docs/Tests" { on = "push" resolves = [ "Builds the Docker image", "Runs the linters and tests" ] } action "Builds the Docker image" { uses = "actions/docker/cli@master" args = "build -f Dockerfile -t active_record-pgcrypto/ci:$GITHUB_SHA ." } action "Runs the linters and tests" { uses = "actions/docker/cli@master" needs = ["Builds the Docker image"] args = "run active_record-pgcrypto/ci:$GITHUB_SHA" }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_record-pgcrypto-0.2.0 | .github/main.workflow |
active_record-pgcrypto-0.1.1 | .github/main.workflow |