Skip to content

Bump actions/cache from 5.0.5 to 6.1.0 #49

Bump actions/cache from 5.0.5 to 6.1.0

Bump actions/cache from 5.0.5 to 6.1.0 #49

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@v7.0.0
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@v7.0.0
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