Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,28 @@ on:
branches: [main]
pull_request:
branches: [main]
types: [opened, reopened, synchronize, labeled, unlabeled]

env:
MIX_ENV: test
SQL_PARSER_EX_BUILD: "1"

jobs:
changelog:
name: Changelog check
runs-on: ubuntu-22.04
if: >
github.event_name == 'pull_request' &&
!contains(github.event.pull_request.labels.*.name, 'Skip Changelog')

steps:
- uses: actions/checkout@v4

- name: Validate changelog entries
uses: miniscruff/changie-action@v2
with:
args: batch --dry-run 999.999.999

test:
name: Test (Elixir ${{ matrix.elixir }} / OTP ${{ matrix.otp }})
runs-on: ubuntu-22.04
Expand Down
Loading