WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

chore(deps): Non-AWS dependency updates #7

chore(deps): Non-AWS dependency updates

chore(deps): Non-AWS dependency updates #7

Workflow file for this run

# This repo contains an Example app in its own standalone SBT project.
# So this CI workflow runs whenever something changes in that project.
name: CI for the Example app
on:
# When a PR is merged
push:
branches:
- main
paths:
- example/**
# When a PR is raised (for example, dependency updates from Dependabot or Scala Steward)
pull_request:
paths:
- example/**
# When a workflow is manually triggered
workflow_dispatch:
jobs:
# Compile and run tests
build:
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./example
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Scala
uses: guardian/setup-scala@v1
- run: >
sbt
compile
Test/compile
scalafmtCheckAll
scalafmtSbtCheck
test