You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
589 B
YAML
18 lines
589 B
YAML
3 years ago
|
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
|