Update version to 0.118.0 #16
This file contains hidden or 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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/erlide_tools | |
| ~/.kerl | |
| key: ${{ runner.os }}-otp-${{ hashFiles('build_utils.sh') }} | |
| - name: Set up JDK 1.8 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '8' | |
| distribution: 'zulu' | |
| cache: 'maven' | |
| - name: Build | |
| run: ./build | |
| - name: Test | |
| run: ./build test | |
| - name: Dialyzer | |
| continue-on-error: true # Until problems are fixed | |
| run: ./build dialyzer | |
| - name: Xref | |
| continue-on-error: true # Until problems are fixed | |
| run: ./build xref | |
| - name: Build zip archive for Eclipse | |
| run: cd eclipse && ./build |