Skip to content

Commit

Permalink
create ci.yaml script
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellinus-witarsah committed Aug 1, 2024
1 parent 0be9d68 commit c6aa46f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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

0 comments on commit c6aa46f

Please sign in to comment.