Skip to content

Commit

Permalink
Architecture.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadling committed Aug 17, 2023
1 parent ee573a3 commit 8b91d94
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/entities-push-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,34 @@ jobs:
py-lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: actions/checkout@v3
# Enable ARM
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# Build images and run linters
- name: Lint Python
working-directory: entities
run: |
# Build images and run linters
make local-build
make check-lint
py-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- uses: actions/checkout@v3
# Enable ARM
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# Set up a local dev env and run tests
- name: Run tests
working-directory: entities
run: |
# Set up a local dev env and run tests
make local-init
make local-tests

0 comments on commit 8b91d94

Please sign in to comment.