diff options
Diffstat (limited to '.github/workflows/beam.yml')
-rw-r--r-- | .github/workflows/beam.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/beam.yml b/.github/workflows/beam.yml index a155c5d..c8785d7 100644 --- a/.github/workflows/beam.yml +++ b/.github/workflows/beam.yml @@ -13,8 +13,8 @@ on: - "**.beam" jobs: - build-and-test: - name: Build and Test + lint-build-and-test: + name: Lint, Build and Test runs-on: ubuntu-latest strategy: fail-fast: false @@ -35,7 +35,7 @@ jobs: run: mix test publish: name: Publish to hex.pm - needs: build-and-test + needs: lint-build-and-test # Only run on this on proper semver (vX.Y.Z) tags if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }} runs-on: ubuntu-latest |