Skip to content

Github Action to setup Elixir on Utrust's Elixir Repos

Notifications You must be signed in to change notification settings

utrustdev/action-setup-elixir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Github Action - Setup Elixir

Configures Elixir, fetches dependencies, and manages build caching.

Usage

Add the following step and matrix to your Action.

jobs:
  setup:
    strategy:
      matrix:
        elixir: ['1.13']
        otp: ['24.3.4']

    steps:
      - name: Setup Elixir Project
        uses: utrustdev/action-setup-elixir@v2
        with:
          elixir-version: ${{ matrix.elixir }}
          otp-version: ${{ matrix.otp }}
          build-flags: --all-warnings --warnings-as-errors
          hex-org-key: ${{ secrets.HEX_ORG_KEY }}

This action does not:

  • Check out the code
  • Setup any additional services like Databases or Localstack.

Those need to be setup in each flow.

About

Github Action to setup Elixir on Utrust's Elixir Repos

Resources

Stars

Watchers

Forks

Packages

No packages published