This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
fix(deps): update task: dependencies safe update (#191) #881
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: "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 | |
# |