chore(deps): update actions/checkout action to v7 #892
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: Server CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # Minimum supported (per mix.exs: "~> 1.16") | |
| - otp: '26.2' | |
| elixir: '1.16.0' | |
| - otp: '26.2' | |
| elixir: '1.16.2' | |
| - otp: '26.2' | |
| elixir: '1.16.3' | |
| # Latest stable on latest OTP | |
| - otp: '28.2' | |
| elixir: '1.19.3' | |
| services: | |
| db: | |
| image: postgres:latest | |
| ports: ['5432:5432'] | |
| env: | |
| POSTGRES_DB: lynx_dev | |
| POSTGRES_USER: lynx | |
| POSTGRES_PASSWORD: lynx | |
| options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{matrix.otp}} | |
| elixir-version: ${{matrix.elixir}} | |
| - name: Get Dependencies | |
| run: make deps | |
| - name: Check Lynx Format | |
| run: make fmt_check | |
| - name: Get Version | |
| run: make v | |
| - name: Test Lynx | |
| run: make ci | |
| - name: Build Lynx | |
| run: make build |