diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-08 11:53:54 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-08 12:05:50 +0300 |
commit | f553c1487dc2df78cb75a3c66a1f96321d2a7d91 (patch) | |
tree | 92e03bc66acdc34fbe80338d790ad235bec7a9e1 /.github/workflows/test.yml | |
parent | workflows/test: test short version numbers too (diff) | |
download | setup-clang-f553c1487dc2df78cb75a3c66a1f96321d2a7d91.tar.gz setup-clang-f553c1487dc2df78cb75a3c66a1f96321d2a7d91.zip |
map version 4 to 4.0v1.1.1
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bef51b3..feda01d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,7 +50,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Set up Clang + - id: setup + name: Set up Clang uses: ./ with: version: '${{ matrix.version }}' @@ -59,7 +60,7 @@ jobs: - name: Build foo.exe uses: ./.github/actions/build-foo with: - version: '${{ matrix.version }}' + binary: '${{ steps.setup.outputs.clangxx }}' - name: Run foo.exe uses: ./.github/actions/run-foo - name: Check cc/c++ |