Skip to content

fix: provide microsecond granularity by using binary pgoutput mode #2268

fix: provide microsecond granularity by using binary pgoutput mode

fix: provide microsecond granularity by using binary pgoutput mode #2268

Workflow file for this run

on:
pull_request:
branches:
- "main"
paths:
- "lib/**"
- "config/**"
- "priv/**"
- "assets/**"
- "rel/**"
- "mix.exs"
- "Dockerfile"
- "run.sh"
permissions:
contents: read
name: Default Checks
jobs:
versions_updated:
name: Versions Updated
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Verify Versions Updated
uses: step-security/changed-files@v45
id: verify_changed_files
with:
files: |
mix.exs
- name: Fail Unless Versions Updated
id: fail_unless_changed
if: steps.verify_changed_files.outputs.any_changed == 'false'
run: |
echo "::error ::Please update the mix.exs version"
exit 1