Bump serde from 1.0.200 to 1.0.201 in /rust #1554
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: Artifact | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
build_artifact: | |
name: Build artifact | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: jetli/[email protected] | |
with: | |
version: 'latest' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: rust | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: make ci.artifact | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: function.zip | |
path: ${{ github.workspace }}/build.function/ |