diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml deleted file mode 100644 index e3add9c..0000000 --- a/.github/workflows/coveralls.yml +++ /dev/null @@ -1,63 +0,0 @@ -# Created with GitHubActions version 0.2.16 -name: Coveralls Report -env: - GITHUB_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} -on: - - pull_request - - push -jobs: - linux: - name: Test on Ubuntu (Elixir ${{ matrix.elixir }}, OTP ${{ matrix.otp }}) - runs-on: ubuntu-20.04 - services: - # Label used to access the service container - strategy: - matrix: - elixir: - - '1.15.6' - otp: - - '26.1' - exclude: - - elixir: '1.13.4' - otp: '26.1' - - elixir: '1.14.5' - otp: '22.3' - - elixir: '1.14.5' - otp: '26.1' - - elixir: '1.15.6' - otp: '22.3' - - elixir: '1.15.6' - otp: '23.3' - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Elixir - uses: erlef/setup-beam@v1 - with: - elixir-version: ${{ matrix.elixir }} - otp-version: ${{ matrix.otp }} - - name: Restore deps - uses: actions/cache@v3 - with: - path: deps - key: deps-${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} - - name: Restore _build - uses: actions/cache@v3 - with: - path: _build - key: _build-${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} - - name: Get dependencies - run: mix deps.get - - name: Compile dependencies - run: MIX_ENV=test mix deps.compile - - name: Compile project - run: MIX_ENV=test mix compile - - name: Check code format - if: ${{ contains(matrix.elixir, '1.15.6') && contains(matrix.otp, '26.1') }} - run: mix format --check-formatted - - name: Run tests - run: MIX_ENV=test mix test - if: ${{ !(contains(matrix.elixir, '1.15.6') && contains(matrix.otp, '26.1')) }} - - name: Run tests with coverage - run: MIX_ENV=test mix coveralls.github - if: ${{ contains(matrix.elixir, '1.15.6') && contains(matrix.otp, '26.1') }} \ No newline at end of file diff --git a/.github/workflows/increment_version.yml b/.github/workflows/increment_version.yml index 9075203..4326947 100644 --- a/.github/workflows/increment_version.yml +++ b/.github/workflows/increment_version.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: 0 - name: Bump version and push tag - uses: anothrNick/github-tag-action@1.36.0 + uses: data-twister/github-tag-action-elixir env: GITHUB_TOKEN: ${{ github.token }} WITH_V: true