12 lines
280 B
YAML
12 lines
280 B
YAML
|
name: Test canon project
|
||
|
on: [ push ]
|
||
|
|
||
|
jobs:
|
||
|
Test-Canon:
|
||
|
runs-on: archlinux
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: https://git.rrricardo.top/actions/checkout@v4
|
||
|
- name: Run test code
|
||
|
run: dotnet test
|