diff options
Diffstat (limited to '.github/workflows/build-test.yaml')
-rw-r--r-- | .github/workflows/build-test.yaml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index be4d74c4..bcd98fd3 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -14,17 +14,17 @@ jobs: - name: Setup cache uses: actions/cache@v2 with: - path: travis_cache - key: ${{ runner.os }}-build-${{ hashFiles('scripts/travis-install.sh') }} + path: ci_cache + key: ${{ runner.os }}-build-${{ hashFiles('scripts/ci-install.sh') }} - name: Prepare tests - run: ./scripts/travis-install.sh + run: ./scripts/ci-install.sh - name: Test - run: ./scripts/travis-build.sh 2>&1 + run: ./scripts/ci-build.sh 2>&1 - name: Upload micro-controller data dictionaries uses: actions/upload-artifact@v2 with: name: data-dict - path: travis_build/dict + path: ci_build/dict |