This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
remove poetry2nix dependency #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
pull_request: | |
workflow_dispatch: | |
name: CI | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v25 | |
with: | |
extra_nix_config: | | |
extra-platforms = aarch64-linux | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: newam | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: install aarch64-qemu | |
run: | | |
DEBIAN_FRONTEND=noninteractive | |
sudo apt-get update -q -y | |
sudo apt-get install -q -y qemu-system-aarch64 qemu-efi binfmt-support qemu-user-static | |
- run: nix flake check -L |