Adds precision option for datetime fields, reverts new default functi… #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: [3.0, 3.1, 3.2] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: "false" | |
- name: get bundler version | |
run: echo "BUNDLER=$(cat .bundler-version)" >> $GITHUB_ENV | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler: ${{ env.BUNDLER }} | |
bundler-cache: true | |
- run: bundle install | |
- run: bundle exec appraisal install | |
- run: bundle exec appraisal rake test |