Create main.yml #1
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 of the workflow | ||
name: CI workflow | ||
# Controls when the workflow will run | ||
on: | ||
push: | ||
branches: "main" | ||
pull_request: | ||
branches: "main" | ||
# A workflow job lists | ||
jobs: | ||
#build job command | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
container: python:3.9-slim | ||