Merge pull request #122 from dwyl/dependabot/hex/phoenix-1.8.3 #255
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: build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| otp: ['24.3.4'] | |
| elixir: ['1.14.1'] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Elixir | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{ matrix.otp }} | |
| elixir-version: ${{ matrix.elixir }} | |
| - name: Restore deps and _build cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| deps | |
| _build | |
| key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
| restore-keys: | | |
| deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }} | |
| - name: Install dependencies | |
| run: mix deps.get | |
| - name: Check code is formatted | |
| run: mix format --check-formatted | |
| - name: Run Tests | |
| run: mix coveralls.json | |
| env: | |
| MIX_ENV: test | |
| AUTH_API_KEY: ${{ secrets.AUTH_API_KEY }} | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v1 |