Bump actions/upload-artifact from 3 to 4 (#507) #455
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | |
name: pre-commit | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
pre-commit: | |
name: Detecting code style issues | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install Rust toolchain | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: Cache Rust toolchain and build artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
# Distinguished by the action name to avoid sharing across different actions! | |
shared-key: "pre-commit" | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Install Trunk for building the webapp | |
run: | | |
cargo install --locked trunk | |
# Required for rust-embed to find the dist/ folder | |
- name: Build ofdb-app-clearance | |
run: just build-clearance | |
- name: Detect code style issues (push) | |
uses: pre-commit/[email protected] | |
if: github.event_name == 'push' | |
- name: Detect code style issues (pull_request) | |
uses: pre-commit/[email protected] | |
if: github.event_name == 'pull_request' | |
env: | |
SKIP: no-commit-to-branch |