Created user type Student as a subtype of PowerUser. This user create… #65
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: CI | |
on: | |
push: | |
branches: [ "develop" ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ "develop" ] | |
paths-ignore: | |
- '**.md' | |
# Adds ability to run this workflow manually | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
HADOLINT_RECURSIVE: "true" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hadolint/hadolint-action@v3.1.0 | |
with: | |
dockerfile: "Dockerfile*" | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build source --file source/Dockerfile --tag ci:$(date +%s) |