[GR-28753] Ignore unsupported source files like .DS_Store. #1796
Workflow file for this run
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
| on: [push, pull_request] | |
| env: | |
| JDT: builtin | |
| jobs: | |
| gate: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [ '3.8' ] | |
| name: Python ${{ matrix.python-version }} gate | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: x64 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: 25 | |
| - name: Style dependencies | |
| run: | | |
| cat common.json | | |
| jq -r '.pip | to_entries[] | .key + .value' | | |
| xargs pip install | |
| - run: pylint --version | |
| - name: mx gate | |
| run: ./mx --strict-compliance gate --strict-mode | |
| - name: Test native build without vcs dir | |
| run: | | |
| rm -rf .git | |
| ./mx -V build --projects com.oracle.jvmtiasmagent |