From 8ae9866cfa28bddbf3b2316538aed6bd8fa5d18a Mon Sep 17 00:00:00 2001 From: Daniil Sedov <42098239+Gusarich@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:59:14 +0300 Subject: [PATCH] feat[ci]: test with the latest Blueprint version (#152) --- .github/workflows/tact.yml | 9 +++++++++ CHANGELOG.md | 1 + 2 files changed, 10 insertions(+) diff --git a/.github/workflows/tact.yml b/.github/workflows/tact.yml index 3ccba144f..593d50b0e 100644 --- a/.github/workflows/tact.yml +++ b/.github/workflows/tact.yml @@ -57,3 +57,12 @@ jobs: yarn build yarn test yarn tact --version + + - name: Test compatibility with Blueprint + run: | + yarn create ton -- test-project --type tact-counter --contractName Counter + cd test-project + yarn link @tact-lang/compiler + yarn build + yarn test + yarn tact --version diff --git a/CHANGELOG.md b/CHANGELOG.md index f079ce009..0ae2dc59e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Decimal and hexadecimal literals now allow underscores as numerical separators: PR [#99](https://github.com/tact-lang/tact/pull/99) - The equality and non-equality operators (`==` and `!=`) now support slices and strings by comparing the hashes of the left-hand and right-hand sides : PR [#105](https://github.com/tact-lang/tact/pull/105) - Continuous integration now tests the dev [tact-template](https://github.com/tact-lang/tact-template)'s version with the dev version of Tact: PR [#111](https://github.com/tact-lang/tact/pull/111) +- Continuous integration now tests the latest [Blueprint](https://github.com/ton-org/blueprint)'s version with the dev version of Tact: PR [#152](https://github.com/tact-lang/tact/pull/152) ### Fixed - Relative imports from parent directories: PR [#125](https://github.com/tact-lang/tact/pull/125)