From 3a276f0b3457dc5cd12b446388a5b5471838ae57 Mon Sep 17 00:00:00 2001 From: Chris Keele Date: Sun, 14 Apr 2024 00:27:28 -0500 Subject: [PATCH] Remove old CI workflow. --- .github/workflows/pulls.yml | 42 ------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/pulls.yml diff --git a/.github/workflows/pulls.yml b/.github/workflows/pulls.yml deleted file mode 100644 index 5d3c02f..0000000 --- a/.github/workflows/pulls.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Elixir CI - -on: - # - push - # - pull_request - - workflow_dispatch - -jobs: - ci: - name: ci - runs-on: ubuntu-latest - strategy: - matrix: - elixir: [1.10.3, 1.11.0] - otp: [22.3, 23.1] - steps: - - uses: actions/checkout@v2 - - name: Set up Elixir - uses: erlef/setup-beam@v1 - with: - elixir-version: ${{ matrix.elixir }} - otp-version: ${{ matrix.otp }} - - name: Restore dependencies cache - uses: actions/cache@v2 - with: - path: deps - key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }} - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix - - name: Restore Dialyzer PLT cache - uses: actions/cache@v2 - with: - path: priv/plts - key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plt-${{ hashFiles('**/priv/plts/dialyzer.plt.hash') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plt-${{ hashFiles('**/priv/plts/dialyzer.plt.hash') }} - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-plt - - name: Install dependencies - run: mix deps.get - - name: mix check - run: mix check