Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use newer Ubuntu for the CI workflow #63

Merged
merged 2 commits into from Nov 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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