Skip to content

Commit 52e2cd5

Browse files
committed
Add CI & changelog.
closes #12
1 parent 301ba6c commit 52e2cd5

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ci
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
name: build
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
matrix:
10+
os: [ubuntu-18.04, macos-latest, windows-latest]
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions-rs/toolchain@v1
14+
with:
15+
toolchain: stable
16+
- uses: actions-rs/cargo@v1
17+
with:
18+
command: build

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
changelog
2+
=========
3+
4+
## Unreleased
5+
6+
## 0.1.2
7+
### changed
8+
- Swap our `grass` for `sass-rs`.
9+
10+
## 0.1.1
11+
### fixed
12+
- Fix an issue with the watch system which was breaking builds on Windows.
13+
14+
## 0.1.0
15+
- Initialize release. See the [release notes on Github](https://github.com/thedodd/trunk/releases/tag/v0.1.0) for more info.

0 commit comments

Comments
 (0)