Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try this #4

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ COPY Gemfile /app
COPY Gemfile.lock /app
RUN bundle install
COPY . /app
CMD ["bundle", "exec", "bin/validate"]
CMD ["sh", "-c", "cd /app && bundle exec bin/validate"]
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source "https://rubygems.org"

gem "bigdecimal"
gem "json"
gem "json-schema"

Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ GEM
specs:
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
bigdecimal (3.1.6)
diff-lcs (1.5.0)
json (2.7.1)
json-schema (4.1.1)
Expand All @@ -28,6 +29,7 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
bigdecimal
json
json-schema
rake
Expand Down
2 changes: 1 addition & 1 deletion bin/validate
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
require "dd_validate"

GITHUB_OUTPUT = ENV.fetch("GITHUB_OUTPUT")
INPUT_PATH = ENV.fetch("INPUT_PATH")
INPUT_PATH = File.join("", "github", "workspace", ENV.fetch("INPUT_PATH"))
INPUT_FAIL = ENV.fetch("INPUT_FAIL")

Inputs = Struct.new(:path, :fail?)
Expand Down