Add ST_DWithin/4 macros and Ecto integration tests #332
This file contains hidden or 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: Elixir Retired Packages Check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| retired_packages: | |
| name: Elixir Retired Packages Check | |
| runs-on: ubuntu-22.04 | |
| env: | |
| MIX_ENV: dev | |
| elixir: "1.16.2" | |
| otp: "26.1.2" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Elixir Project | |
| uses: ./.github/actions/elixir-setup | |
| with: | |
| elixir-version: ${{ env.elixir }} | |
| otp-version: ${{ env.otp }} | |
| build-app: false | |
| - name: Check for retired/abandoned deps | |
| run: mix hex.audit |