From 5c042bc36cdebde5b8f265293f7326a8bdf280b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20D=C4=85browski?= Date: Mon, 29 Jul 2024 18:22:29 +0200 Subject: [PATCH] remove github garbage --- .github/workflows/pr.yml | 42 ---------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml deleted file mode 100644 index fcde2b7..0000000 --- a/.github/workflows/pr.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: PR - -on: [pull_request] - -jobs: - Validate: - runs-on: ubuntu-latest - name: Validate OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} - strategy: - matrix: - elixir: - - 1.15 - otp: - - 26.1 - steps: - - uses: actions/checkout@v4 - - name: Set up Elixir - uses: erlef/setup-beam@v1 - with: - elixir-version: ${{ matrix.elixir }} - otp-version: ${{ matrix.otp }} - - uses: actions/cache@v3 - with: - path: | - deps - _build - key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} - restore-keys: | - ${{ runner.os }}-mix- - - name: Install Dependencies - run: mix deps.get - - name: Check Format - run: mix format --check-formatted - - name: Compile - run: mix compile --all-warnings --warnings-as-errors - - name: Test - run: mix test - - - - -