Skip to content

Fix #1610 unexpected field-error related to a well-formatted value example of a schema's boolean field using frictionless validate #2929

Fix #1610 unexpected field-error related to a well-formatted value example of a schema's boolean field using frictionless validate

Fix #1610 unexpected field-error related to a well-formatted value example of a schema's boolean field using frictionless validate #2929

Workflow file for this run

name: general
on:
push:
branches:
- main
tags:
- v*.*.*
pull_request:
branches:
- main
# schedule:
# - cron: "0 3 * * *"
jobs:
# Test (Linux)
test-linux:
if: github.event_name != 'schedule' || github.repository_owner == 'frictionlessdata'
runs-on: ubuntu-latest
strategy:
matrix:
# TODO: recover 3.8 and 3.9 when pytest-vcr is fixed
# https://github.com/ktosiek/pytest-vcr/issues/53
# TODO: recover 3.12 when duck is fixed
# https://github.com/duckdb/duckdb/issues/9563
# python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Prepare environment
run: pip3 install hatch
- name: Prepare variables
run: cp .env.example .env
- name: Prepare secrets
if: env.GOOGLE_CREDENTIALS_DATA != null
run: echo $GOOGLE_CREDENTIALS_DATA > .google.json
env:
GOOGLE_CREDENTIALS_DATA: ${{ secrets.GOOGLE_CREDENTIALS_DATA }}
- name: Test software
run: hatch run +py=${{ matrix.py || matrix.python-version }} ci:test
- name: Report coverage
uses: codecov/codecov-action@v3
services:
postgres:
image: postgres:12
env:
POSTGRES_DB: test
POSTGRES_PASSWORD: test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
mysql:
image: mysql:8
env:
MYSQL_DATABASE: test
MYSQL_ALLOW_EMPTY_PASSWORD: yes
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
# Test (MacOS)
test-macos:
if: github.event_name != 'schedule' || github.repository_owner == 'frictionlessdata'
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Prepare environment
run: pip3 install hatch
- name: Prepare variables
run: cp .env.example .env
- name: Test software
# https://stackoverflow.com/questions/9678408/cant-install-psycopg2-with-pip-in-virtualenv-on-mac-os-x-10-7
run: LDFLAGS=`echo $(pg_config --ldflags)` make test
# Test (Windows)
test-windows:
if: github.event_name != 'schedule' || github.repository_owner == 'frictionlessdata'
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Prepare environment
run: pip3 install hatch
- name: Prepare variables
run: cp .env.example .env
- name: Test software
run: make test
# Deploy
deploy:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Prepare environment
run: pip3 install hatch
- name: Install and build site
run: |
echo '!**/*.html' >> .gitignore
make docs
- name: Publush to Github Pages
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: site
create_branch: true
push_options: "--force"
# Release
release:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: [test-linux, test-macos, test-windows]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -U build
- name: Build distribution
run: python -m build
- name: Publish to PYPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_KEY }}
- name: Release to GitHub
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}