upload chkblobs to gsfs as well as mapblobs #79
This file contains 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: PR-CI | |
on: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
test: | |
timeout-minutes: 30 | |
name: ${{format('Cargo {0}', matrix.rust)}} | |
# if: false | |
runs-on: self-hosted | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# - rust: nightly | |
# - rust: beta | |
- rust: stable | |
# - rust: 1.74.0 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{matrix.rust}} | |
components: clippy, rustfmt | |
- name: work around Cargo.lock filetime not being updated..? | |
run: touch Cargo.lock | |
- run: make ci |