Skip to content

Commit

Permalink
Add zstd to github action to see if that fixes it
Browse files Browse the repository at this point in the history
  • Loading branch information
choptastic committed Sep 7, 2023
1 parent a7acef5 commit 475e838
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ jobs:
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}


strategy:
matrix:
#otp_version: [23, 24, 25.0, 26]
Expand All @@ -30,8 +29,10 @@ jobs:
container: erlang:${{ matrix.otp_version }}

steps:
- name: Checkout SQL bridge
uses: actions/checkout@v3
- name: Install zstd (needed for MySQL Action)
run: |
apt update -y
apt install -y zstd
# https://github.com/marketplace/actions/actions-setup-mysql
- name: Install ${{ matrix.mysql }}
Expand All @@ -53,6 +54,9 @@ jobs:
# apt update -y
# apt install -y postgresql-client mariadb-client

- name: Checkout SQL bridge
uses: actions/checkout@v3

- name: Load databases & Run SQL Bridge eunit tests
run: make ci
env:
Expand Down

0 comments on commit 475e838

Please sign in to comment.