updated dependencies #26
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: Build | |
on: | |
push: | |
# Run this workflow automatically when a branch starting with "releases/" or master is pushed, and on every pr | |
branches: | |
- main | |
- master | |
- releases/** | |
tags: | |
- v** | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
# Clean, check formatting, build and do a dry release | |
- name: Make all | |
run: make all |