ci: build and test using GitHub Actions
This commit is contained in:
parent
8abb33d232
commit
e6a4183921
|
@ -0,0 +1,2 @@
|
|||
github: Bogdanp
|
||||
patreon: popabogdanp
|
|
@ -0,0 +1,11 @@
|
|||
on: push
|
||||
name: main
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Build and Test
|
||||
uses: docker://jackfirth/racket:7.3-full
|
||||
with:
|
||||
entrypoint: /github/workspace/ci/build.sh
|
|
@ -1,5 +1,7 @@
|
|||
# racket-sass
|
||||
|
||||
[![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2FBogdanp%2Fracket-sass%2Fbadge&style=flat)](https://actions-badge.atrox.dev/Bogdanp/racket-sass/goto)
|
||||
|
||||
Racket bindings for [libsass].
|
||||
|
||||
## TODOs
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
pushd /github/workspace
|
||||
raco pkg install --auto --batch sass/
|
||||
raco test -j 4 sass/
|
||||
popd
|
Loading…
Reference in New Issue