Merge pull request #1 from mikey/github-workflow

ci: add github actions workflow
master
Michael Neuling 3 years ago committed by GitHub
commit 8bc6573656
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,18 @@
name: test
on: [push]
jobs:
Unittests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip3 install 'git+https://github.com/nmigen/nmigen.git'
- run: pip3 install 'git+https://github.com/nmigen/nmigen-soc.git'
- run: python -m unittest -v

Verilog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip install git+https://github.com/nmigen/nmigen.git#egg=nmigen[builtin-yosys]
- run: pip3 install 'git+https://github.com/nmigen/nmigen-soc.git'
- run: python -m lpcperipheral.lpcperipheral
Loading…
Cancel
Save