Skip to content

Commit

Permalink
Make dialyzer a separate error. Add Erlang 25 against newer adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
choptastic committed Sep 8, 2023
1 parent c6fbbaa commit 74b3757
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: push

jobs:
linux:
name: OTP ${{ matrix.otp_version }}/${{ matrix.mysql }}/PG ${{ matrix.pg}}
name: OTP ${{ matrix.otp_version }} (${{ matrix.mysql }}/PG ${{ matrix.pg}})
runs-on: ${{ matrix.os }}
continue-on-error: true

Expand All @@ -20,6 +20,16 @@ jobs:
pg: "15"
otp_version: '26.x'
rebar3_version: "3.22.1"
- os: ubuntu-22.04
mysql: "mariadb-11.1"
pg: "16rc1"
otp_version: '25.x'
rebar3_version: "3.22.1"
- os: ubuntu-22.04
mysql: "mariadb-10.11"
pg: "15"
otp_version: '25.x'
rebar3_version: "3.22.1"
- os: ubuntu-22.04
mysql: "mariadb-10.2"
pg: "14"
Expand Down Expand Up @@ -76,9 +86,12 @@ jobs:
uses: actions/checkout@v3

- name: Load databases & Run SQL Bridge eunit tests
run: make ci
run: make test
env:
MYSQLHOST: localhost
PGHOST: localhost
PGUSER: postgres
PGPASSWORD: postgres

- name: Run Dialyzer
run: make dialyzer
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ run: rebar3
test: rebar3 setup-all-tests
$(REBAR) eunit

ci: test dialyzer

dev: _checkouts _checkouts/epgsql _checkouts/mysql

_checkouts:
Expand Down

0 comments on commit 74b3757

Please sign in to comment.