Skip to content

Fix writing AUTOINCREMENT and LONG fields #69

Fix writing AUTOINCREMENT and LONG fields

Fix writing AUTOINCREMENT and LONG fields #69

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: JavaDBF CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17, 21 ]
name: Java ${{matrix.java}}
steps:
- uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{matrix.java}}
- name: Build with Maven
run: mvn -B -Dgpg.skip=true -Dmaven.javadoc.skip=true clean package verify