Split config script test into its own step #35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-defaults: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Create .tool-versions file | |
| run: | | |
| printf 'elixir 1.16.1-otp-26\nerlang 26.2.2\n' > .tool-versions | |
| - uses: ./ | |
| - name: Check Erlang and Elixir versions | |
| run: | | |
| elixir --version | grep 'Erlang/OTP 26' | |
| elixir --version | grep 'Elixir 1.16.1' | |
| test-inputs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: ./ | |
| with: | |
| elixir-version: 1.15 | |
| otp-version: 25 | |
| config-script: | | |
| echo "hello, world" > hello.txt | |
| - name: Check Erlang and Elixir versions | |
| run: | | |
| elixir --version | grep 'Erlang/OTP 25' | |
| elixir --version | grep 'Elixir 1.15' | |
| - name: Check configuration script | |
| run: | | |
| grep "hello, world" hello.txt |