Skip to content

Commit

Permalink
rename build.sbt file
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmunyao committed Mar 31, 2024
1 parent 76ea127 commit dfbc9df
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "weekly"
31 changes: 31 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Scala CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
run: sbt test

- name: Input Access Token
run: echo "ACCESS_TOKEN=$ACCESS_TOKEN" >> $GITHUB_ENV
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
1 change: 1 addition & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ ThisBuild / scalaVersion := "2.13.13"

lazy val root = (project in file("."))
.settings(
name := "Knight Problem"
name := "Knight's Tour"
)

0 comments on commit dfbc9df

Please sign in to comment.