-
Notifications
You must be signed in to change notification settings - Fork 0
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
change in elixer version and made version universal #14
Conversation
@@ -7,6 +7,14 @@ on: | |||
flag_test_coverage: | |||
required: false | |||
type: boolean | |||
elixer_version: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
elixir*
elixer_version: | ||
type: string | ||
required: false | ||
default: 1.16.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default should be '1.13.4'
also, can we wrap it in quotes?
@@ -25,8 +33,9 @@ jobs: | |||
runs-on: ubuntu-20.04 | |||
strategy: | |||
matrix: | |||
elixir: ['1.13.4'] | |||
otp: ['24.0'] | |||
elixir: ${{ inputs.elixer_version }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be wrapped in square brackets, it's an array
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Made some changes in elixer build test file if its correct will do for others also