8000 feat: upgrade aleph-message from 0.4.2 to 0.4.8 and fix all mypy issues. · aleph-im/pyaleph@8bce3ab · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat: upgrade aleph-message from 0.4.2 to 0.4.8 and fix all mypy issues. #80

76A2

feat: upgrade aleph-message from 0.4.2 to 0.4.8 and fix all mypy issues.

feat: upgrade aleph-message from 0.4.2 to 0.4.8 and fix all mypy issues. #80

Workflow file for this run

name: Test nix-shell
on:
push:
branches:
- '*'
jobs:
nix-shell:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
# Fetch the whole history for all tags and branches (required for aleph.__version__)
fetch-depth: 0
- name: Set up Nix
uses: cachix/install-nix-action@v25
with:
# Use channel nixos-23.11 for Linux and nixpkgs-23.11-darwin for macOS
nix_path: nixpkgs=channel:${{ matrix.os == 'macos-latest' && 'nixpkgs-23.11-darwin' || 'nixos-23.11' }}
- name: Run tests
run: nix-shell --run "pytest"
0