Dockerfile-dummy. #18
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: Makefile CI | |
on: | |
push: | |
branches: [ '23-24', 'v*' ] | |
pull_request: | |
branches: [ '23-24', 'v*' ] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: proyecto | |
steps: | |
- name: Checkout the repo. | |
uses: actions/checkout@v4 | |
- name: Install needed ubuntu packages. | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: openjdk-11-jdk maven | |
version: 1.0 | |
- name: build proyecto | |
run: make |