Skip to content

Commit

Permalink
Create clojure.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zhendrikse authored Oct 3, 2023
1 parent ae6dee9 commit 2ff770d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Clojure CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install dependencies
working-directory: kata-solutions/connect-four/connect-four-clojure
run: lein deps
- name: Run tests
working-directory: kata-solutions/connect-four/connect-four-clojure
run: lein test

0 comments on commit 2ff770d

Please sign in to comment.