Skip to content

Include vendored nanoarrow source in Hex package (#159) #626

Include vendored nanoarrow source in Hex package (#159)

Include vendored nanoarrow source in Hex package (#159) #626

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
- dev
paths-ignore:
- "**/*.md"
- "LICENSE*"
- ".github/workflows/precompile.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linux:
if: contains(github.event.pull_request.labels.*.name, 'skip ci') != true
runs-on: ubuntu-22.04
env:
MIX_ENV: test
services:
pg:
image: postgres:14
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: "26.2"
elixir-version: "1.15.8"
- name: Compile and Test
run: |
mix deps.get
mix test
windows:
if: contains(github.event.pull_request.labels.*.name, 'skip ci') != true
runs-on: windows-2022
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: 26
elixir-version: 1.15
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
- name: Compile and Test
shell: bash
run: |
mix deps.get
mix test --exclude postgresql
macos:
if: contains(github.event.pull_request.labels.*.name, 'skip ci') != true
runs-on: macos-14
env:
MIX_ENV: test
OTP_VERSION: "26.2"
ELIXIR_VERSION: "1.15.8"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install OTP and Elixir
run: |
curl -fsSO https://elixir-lang.org/install.sh
sh install.sh "elixir@${ELIXIR_VERSION}" "otp@${OTP_VERSION}"
- name: Compile and Test
run: |
export OTP_MAIN_VER="${OTP_VERSION%%.*}"
export PATH=$HOME/.elixir-install/installs/otp/${OTP_VERSION}/bin:$PATH
export PATH=$HOME/.elixir-install/installs/elixir/${ELIXIR_VERSION}-otp-${OTP_MAIN_VER}/bin:$PATH
mix local.hex --force
mix local.rebar --force
mix deps.get
mix test --exclude postgresql