Skip to content

feat: parse dates, times, and timestamps #196

feat: parse dates, times, and timestamps

feat: parse dates, times, and timestamps #196

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')"
runs-on: ubuntu-20.04
env:
MIX_ENV: test
services:
pg:
image: postgres:11
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@v3
- uses: erlef/setup-beam@v1
with:
otp-version: 25.3
elixir-version: 1.14
- name: Compile and Test
run: |
mix deps.get
mix test --include duckdb
windows:
if: "!contains(github.event.pull_request.labels.*.name, 'skip ci')"
runs-on: windows-latest
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- 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')"
runs-on: macos-11
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- name: macOS setup
run: |
brew install erlang elixir
mix local.hex --force
mix local.rebar --force
- name: Compile and Test
run: |
mix deps.get
mix test --exclude postgresql