Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kalilamali authored Aug 8, 2023
1 parent d6ac35a commit 2b7a7e8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Codespaces Python 3.10
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10.12
- name: Install dependencies
run: |
make install
- name: Lint
run: |
make lint
- name: Format
run: |
make format
- name: Test
run: |
make test

0 comments on commit 2b7a7e8

Please sign in to comment.