Skip to content

Nightly Build

Nightly Build #217

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Nightly Build
on:
schedule:
- cron: '0 0 * * *'
permissions:
contents: read
jobs:
build:
name: Build and test with update dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: '1.16.3' # Define the elixir version [required]
otp-version: '26' # Define the OTP version [required]
- name: Unlock Dependencies
run: mix deps.unlock --all
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- name: Run Dialyzer
run: mix dialyzer
- name: Run Credo
run: mix credo --no-color