fix(deps): Bump serde from 1.0.207 to 1.0.208 in the runtime-dependencies group #160
Workflow file for this run
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: Main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- develop | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
test: | |
name: Test | |
uses: jontze/.workflows/.github/workflows/rust_test.yaml@main | |
with: | |
build: true | |
unit-tests: false | |
next: | |
name: Release | |
needs: | |
- test | |
# Only on push to main | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
permissions: | |
contents: write | |
uses: jontze/.workflows/.github/workflows/rust_release.yaml@main | |
with: | |
use-deploy-key: true | |
secrets: | |
DEPLOY_KEY: ${{ secrets.CI_TAG_DEPLOY_KEY }} |