add more examples to README #34
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: | |
| branches-ignore: | |
| - main | |
| - master | |
| - ghpages | |
| name: "check package with checklist" | |
| jobs: | |
| check-package: | |
| runs-on: ubuntu-latest | |
| name: "check package" | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| targets: x86_64-pc-windows-gnu | |
| - name: Cache Rust workspace | |
| uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 #v2.9.2 | |
| with: | |
| workspaces: "src/rust" | |
| - uses: inbo/actions/check_pkg@main | |
| with: | |
| cmd: | | |
| sudo apt-get install -y libudunits2-dev libgdal-dev libgeos-dev libproj-dev |