Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
push:
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-24.04'
steps:
- uses: actions/checkout@v2

Expand Down
19 changes: 12 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,21 @@ jobs:
runs-on: ${{ matrix.image }}
strategy:
matrix:
image: [ ubuntu-20.04, windows-2019 ]
image:
- ubuntu-24.04
- windows-2019
steps:
- uses: actions/checkout@v2
- name: SBT Cache
uses: actions/cache@v2

- name: Set up JDK
uses: actions/setup-java@v4
with:
path: |
~/.ivy2/cache
~/.sbt
key: main.${{ runner.os }}.sbt.${{ hashFiles('**/*.sbt') }}+${{ hashFiles('project/build.properties') }}
distribution: 'corretto'
java-version: '11'
cache: 'sbt'

- name: Set up SBT
uses: sbt/setup-sbt@v1

- name: Build
run: sbt dist
17 changes: 10 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

services:
postgres:
Expand Down Expand Up @@ -41,13 +41,16 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: SBT Cache
uses: actions/cache@v2

- name: Set up JDK
uses: actions/setup-java@v4
with:
path: |
~/.ivy2/cache
~/.sbt
key: test.${{ runner.os }}.sbt.${{ hashFiles('**/*.sbt') }}+${{ hashFiles('project/build.properties') }}
distribution: 'corretto'
java-version: '11'
cache: 'sbt'

- name: Set up SBT
uses: sbt/setup-sbt@v1

- name: Database Setup
run: psql postgresql://horta:hell@localhost/loglist -c 'create extension pgcrypto;'
Expand Down
Loading