2022-05-02 02:24:07 +00:00
|
|
|
name: "Test suite"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- master
|
|
|
|
workflow_call:
|
|
|
|
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
2022-08-15 00:45:40 +00:00
|
|
|
compileall:
|
|
|
|
name: "🧪 Test package using compileall"
|
2022-05-02 02:24:07 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: "⬇️ Checkout repository"
|
|
|
|
uses: actions/checkout@v3
|
2022-08-15 00:45:40 +00:00
|
|
|
|
2022-05-02 02:24:07 +00:00
|
|
|
- name: "🔨 Setup Python"
|
|
|
|
uses: actions/setup-python@v3
|
2022-08-15 00:45:40 +00:00
|
|
|
with:
|
|
|
|
python-version: '3.10'
|
|
|
|
|
2022-05-02 02:24:07 +00:00
|
|
|
- name: "🔨 Setup Poetry"
|
2022-06-27 08:53:14 +00:00
|
|
|
uses: abatilo/actions-poetry@v2.1.5
|
2022-08-15 00:45:40 +00:00
|
|
|
|
2022-05-02 02:24:07 +00:00
|
|
|
- name: "🔨 Setup Poetry Python environment"
|
|
|
|
id: pyenv
|
|
|
|
uses: Steffo99/actions-poetry-deps@v0.2.4
|
2022-08-15 00:45:40 +00:00
|
|
|
|
|
|
|
- name: "🧪 Run check"
|
2022-05-02 02:24:07 +00:00
|
|
|
run: |
|
|
|
|
source ${{ steps.pyenv.outputs.pyenv }}/activate
|
2022-08-15 00:45:40 +00:00
|
|
|
python -m compileall royalpack
|