Upgrade to adam-core>=0.5.2 and adam-assist>=0.3.3 #344
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: pip - Build Lint Test and Coverage | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-lint-test-coverage: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ["3.11"] | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| env: | |
| OORB_DATA: /tmp/oorb/data | |
| steps: | |
| - name: Checkout git repo | |
| uses: actions/checkout@v4 | |
| - name: Get git tags | |
| run: git fetch --prune --unshallow --tags | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' # caching pip dependencies | |
| - name: Install openorb dependencies | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y gfortran liblapack-dev | |
| wget -P /tmp/ https://storage.googleapis.com/oorb-data/oorb_data.tar.gz | |
| mkdir -p /tmp/oorb/ | |
| tar -xvf /tmp/oorb_data.tar.gz -C /tmp/oorb/ | |
| - name: Install Dependencies | |
| run: | | |
| pip install pip --upgrade | |
| pip install ".[dev]" | |
| - name: Lint | |
| run: pdm run lint | |
| # - name: Type check | |
| # run: pdm run typecheck | |
| - name: Test with coverage | |
| run: pdm run coverage | |
| - name: Coverage Report | |
| uses: coverallsapp/github-action@v2.0.0 | |
| with: | |
| github-token: ${{ secrets.COVERALLS_TOKEN }} | |
| path-to-lcov: coverage.xml |