We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe024d5 commit a88d24cCopy full SHA for a88d24c
Makefile
@@ -1,11 +1,19 @@
1
-.PHONY: build test clean publish publish-darwin publish-linux publish-windows pack-nuget publish-all
+.PHONY: build test smoke-tests clean publish publish-darwin publish-linux publish-windows pack-nuget publish-all
2
3
build:
4
dotnet build FScript.sln -c Release
5
6
test:
7
dotnet test FScript.sln -c Release
8
9
+smoke-tests:
10
+ @set -e; \
11
+ for script in samples/*.fss; do \
12
+ echo "Running $$script"; \
13
+ dotnet run --project src/FScript -- "$$script" > /dev/null; \
14
+ done; \
15
+ echo "All smoke tests passed."
16
+
17
clean:
18
dotnet clean FScript.sln -c Release
19
find . -type d -name bin -o -name obj | xargs rm -rf
0 commit comments