Skip to content

Split config script test into its own step #35

Split config script test into its own step

Split config script test into its own step #35

Workflow file for this run

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