Skip to content

Commit

Permalink
Replace Travis CI with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Apr 10, 2024
1 parent d8a36f3 commit f91c473
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '8'

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@10.1
with:
lein: 2.9.10

- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: cljdeps-${{ hashFiles('project.clj') }}
restore-keys: cljdeps-

- name: Run tests
run: lein test
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Duct compiler.sass

[![Build Status](https://travis-ci.org/duct-framework/compiler.sass.svg?branch=master)](https://travis-ci.org/duct-framework/compiler.sass)
# Duct compiler.sass [![Build Status](https://github.com/duct-framework/compiler.sass/actions/workflows/test.yml/badge.svg)](https://github.com/duct-framework/compiler.sass/actions/workflows/test.yml)

[Integrant][] methods for compiling [Sass][] files to CSS in
the [Duct][] framework.
Expand Down

0 comments on commit f91c473

Please sign in to comment.