Skip to content

Commit

Permalink
Add CI action (#207)
Browse files Browse the repository at this point in the history
Открыл проект впервые с 2017 года и к моему удивлению он просто запустился. Все тесты прошли успешно с первого раза. Ни одной потерянной зависимости. Удивлён.

А вот используемый изначально в качестве CI сервис TravisCI более недоступен. Поэтому добавляю сборку проекта на GitHub.
  • Loading branch information
v-kolesnikov committed Jul 23, 2023
1 parent a4a186d commit be21c17
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: lein deps
- name: Run tests
run: lein test

0 comments on commit be21c17

Please sign in to comment.