Skip to content

Commit

Permalink
Use newer Ubuntu for the CI workflow (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
lexmag committed Nov 17, 2022
1 parent 13ebe5e commit f2b5bd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -9,13 +9,13 @@ on:
jobs:
format:
name: Code linting
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- name: Set up Elixir environment
uses: erlef/setup-elixir@v1
uses: erlef/setup-beam@v1
with:
otp-version: 23
elixir-version: 1.11
Expand All @@ -31,7 +31,7 @@ jobs:

test:
name: Test suite
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04

strategy:
matrix:
Expand All @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Elixir environment
uses: erlef/setup-elixir@v1
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.versions.elixir }}
otp-version: ${{ matrix.versions.otp }}
Expand Down

0 comments on commit f2b5bd3

Please sign in to comment.