semantic-rs 1.0.0

Automatic crate publishing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TARGET = target/debug/semantic-rs
SRC = $(wildcard src/*.rs)

test: unit integrations

build: $(TARGET)

$(TARGET): $(SRC)
	cargo build

unit:
	cargo test

integrations: $(TARGET)
	./tests/integration/run-locally.sh