build(deps): Bump taiki-e/install-action from 2.68.18 to 2.68.19 #79
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
| name: Test | |
| on: [pull_request, push] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0 | |
| with: | |
| egress-policy: audit | |
| allowed-endpoints: > | |
| archive.ubuntu.com:443 | |
| crates.io:443 | |
| esm.ubuntu.com:443 | |
| github.com:443 | |
| githubapp.com:443 | |
| index.crates.io:443 | |
| postgres.org:440 | |
| static.crates.io:443 | |
| static.rust-lang.org:443 | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Update Rust toolchain | |
| run: rustup update | |
| - name: Install pgrx | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y bison build-essential clang flex libreadline-dev libxml2-dev libxslt-dev libssl-dev pkg-config xsltproc zlib1g-dev | |
| cargo install cargo-pgrx | |
| cargo pgrx init | |
| - name: Test | |
| run: cargo pgrx test |