From 66b4900e098452e0343af19163f5c2ff50e2c797 Mon Sep 17 00:00:00 2001 From: parroty Date: Sun, 1 Dec 2019 18:41:22 +0900 Subject: [PATCH] Disable github actions workflow --- .github/workflows/main.yml | 49 -------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 9007742c..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,49 +0,0 @@ ---- -name: build -env: - MIX_ENV: test - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -on: - push: - branches: - - master - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Setup elixir - uses: actions/setup-elixir@v1.0.0 - with: - elixir-version: 1.9.x - otp-version: 22.x - - - name: Checkout repository - uses: actions/checkout@v1 - - - name: Get deps cache - uses: actions/cache@v1 - with: - path: deps/ - key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }} - restore-keys: ${{ runner.os }}-deps- - - - name: Get build cache - uses: actions/cache@v1 - with: - path: _build/test/ - key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }} - restore-keys: ${{ runner.os }}-build- - - - name: Install Dependencies - run: | - mix local.rebar --force - mix local.hex --force - mix deps.get - mix compile - - - name: Run Tests - run: | - mix coveralls.github