Skip to content

chore(deps): update chore: dev dependencies safe update #936

chore(deps): update chore: dev dependencies safe update

chore(deps): update chore: dev dependencies safe update #936

Workflow file for this run

name: "Build on Push"
on: [ push ]
#
# For each push, check that the project builds and tests pass (and run coverage if applicable).
#
# Common tasks include:
#
# - Build the project.
# - Run the test suite for the project.
# - Run code qualimetry (linters, graders).
# - Calculate and upload coverage reports.
# - Create documents and check if git diff exists.
# - Set version and check if git diff exists.
#
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
#
# TODO
#
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
#
# TODO
#