Agregar soporte para descarga de archivos media desde Cloud API #225
Workflow file for this run
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: Elixir CI | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup elixir | |
| uses: erlef/setup-elixir@v1 | |
| with: | |
| elixir-version: 1.16.3 # Define the elixir version [required] | |
| otp-version: 26.0 # Define the OTP version [required] | |
| - name: Install Dependencies | |
| run: mix deps.get | |
| - name: Warnings as errors | |
| run: mix compile --warnings-as-errors | |
| - name: Run Tests | |
| run: mix test |