Fix #1271 Add slack_file object to image block / block element classe… #961
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JDK 1.8 Build & Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 12 | |
strategy: | |
matrix: | |
java-version: ['8'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'adopt' | |
- name: Run all tests | |
run: | | |
if [ ${{ matrix.java-version }} == "8" ]; then | |
export TRAVIS_JDK=openjdk8 | |
fi | |
./scripts/run_no_prep_tests.sh -ci | |
env: | |
SKIP_UNSTABLE_TESTS: 1 |