Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

MiASI v.1.2.5 - Porządek w plikach, ostatnie poprawki i tłumaczenie #53

MiASI v.1.2.5 - Porządek w plikach, ostatnie poprawki i tłumaczenie

MiASI v.1.2.5 - Porządek w plikach, ostatnie poprawki i tłumaczenie #53

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
linter:
strategy:
fail-fast: false
matrix:
python-version: [3.11, 3.12]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install project
run: make install
- name: Run linter
run: make lint
tests_linux:
strategy:
fail-fast: false
matrix:
python-version: [3.11, 3.12]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install project
run: make install
- name: Run tests
run: make test
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1