diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9481d5d..ab7cea2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,15 +6,16 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Setup elixir uses: actions/setup-elixir@v1 with: - elixir-version: 1.9.4 # Define the elixir version [required] - otp-version: 22.2 # Define the OTP version [required] + elixir-version: 1.12.2 # Define the elixir version [required] + otp-version: 24.0.5 # Define the OTP version [required] + experimental-otp: true - name: Install Dependencies run: mix deps.get - name: Run Tests diff --git a/mix.exs b/mix.exs index 3583faa..2db715a 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Lexdee.MixProject do def project do [ app: :lexdee, - version: "0.3.3", + version: "1.0.0", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, package: package(),