Skip to content

create ci.yaml script #1

create ci.yaml script

create ci.yaml script #1

Workflow file for this run

name: Continuous Integration
on: [push, workflow_dispatch]
permissions: write-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: iterative/setup-cml@v2
- uses: actions/setup-python@v5
with:
python-version: '3.10.14'
- name: Install Packages
run: make requirements
- name: Formatting
run: make format
- name: Linting
run: make lint
- name: Cleaning complied Python files
run: make clean