forked from libre-chip/cpu
19 lines
528 B
YAML
19 lines
528 B
YAML
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# See Notices.txt for copyright information
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: debian-12
|
|
container:
|
|
image: git.libre-chip.org/libre-chip/fayalite-deps:latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- run: |
|
|
scripts/check-copyright.sh
|
|
- uses: https://git.libre-chip.org/mirrors/rust-cache@v2
|
|
with:
|
|
save-if: ${{ github.ref == 'refs/heads/master' }}
|
|
- run: cargo test
|