Update scrimage-scala to 4.2.0 #772
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't edit this file! | |
# It is automatically updated after every release of https://github.com/47degrees/.github | |
# If you want to suggest a change, please open a PR or issue in that repository | |
name: Formatters & Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project (pull-request) | |
if: github.event_name == 'pull_request' | |
uses: actions/[email protected] | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Checkout project (main) | |
if: github.event_name == 'push' | |
uses: actions/checkout@v2 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v11 | |
with: | |
java-version: [email protected] | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: .ruby-version | |
- name: Setup yq | |
run: sudo snap install yq | |
- name: Run pre-conditions | |
run: test -f .github/actions.yml && eval "$(yq e '.pre.ci // "true"' .github/actions.yml)" || true | |
- name: Run scalafmt on Scala Steward PRs | |
if: github.event.pull_request.user.login == '47erbot' && contains(github.event.pull_request.body, 'Scala Steward') | |
run: sbt "scalafixEnable; fix" || sbt "scalafmtAll; scalafmtSbt" || true | |
- name: Push changes | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Run formatter/linter | |
- name: Run checks | |
run: sbt ci-test | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
- name: Run post-conditions | |
run: test -f .github/actions.yml && eval "$(yq e '.post.ci // "true"' .github/actions.yml)" || true | |
- name: Automerge Scala Steward PRs | |
if: success() && github.event_name == 'pull_request' && contains(github.event.pull_request.body, 'Scala Steward') | |
uses: ridedott/[email protected] | |
with: | |
GITHUB_LOGIN: 47erbot | |
GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} |