Skip to content

Commit 9bef9ce

Browse files
committed
Simplify and rename action
1 parent 81d6473 commit 9bef9ce

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed
Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
1-
name: Scala CI
1+
name: Tests
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: main
66
pull_request:
7-
branches: [ main ]
7+
branches: main
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
13-
1412
steps:
1513
- uses: actions/checkout@v3
16-
- name: Set up JDK 17
17-
uses: actions/setup-java@v3
14+
- uses: actions/setup-java@v3
1815
with:
1916
java-version: '17'
2017
distribution: 'corretto'
2118
cache: 'sbt'
22-
- name: Run tests
23-
run: sbt test
19+
- run: sbt test

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Advent of Code [![Scala CI](https://github.com/maneatingape/advent-of-code/actions/workflows/scala.yml/badge.svg)](https://github.com/maneatingape/advent-of-code/actions)
1+
# Advent of Code [![tests](https://github.com/maneatingape/advent-of-code/actions/workflows/tests.yml/badge.svg)](https://github.com/maneatingape/advent-of-code/actions)
22

33
Complete 2022 to 2015 entries for the annual [Advent of Code](https://adventofcode.com/) challenge, written in concise idiomatic functional Scala.
44

5-
The coding style philosophy is [Readability](https://www.lihaoyi.com/post/StrategicScalaStylePrincipleofLeastPower.html) > [Simplicity](https://en.wikipedia.org/wiki/KISS_principle) > [Performance](https://www.laws-of-software.com/laws/knuth/).
5+
## Features
66

77
As far as possible, each day's solution embraces the following approaches:
88
* Self-contained within a single file, depending only on the standard Scala library.

0 commit comments

Comments
 (0)