Skip to content

feat: 初步实现学习系统 #7

feat: 初步实现学习系统

feat: 初步实现学习系统 #7

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# rust-clippy is a tool that runs a bunch of lints to catch common
# mistakes in your Rust code and help improve your Rust code.
# More details at https://github.com/rust-lang/rust-clippy
# and https://rust-lang.github.io/rust-clippy/
name: CI
on:
pull_request:
push:
paths-ignore:
- '**.md'
- 'LICENSE'
jobs:
rust-clippy-analyze:
name: Run xmake build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install xmake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
- name: xmake config
run: xmake f
- name: xmake build
run: xmake
- name: xmake run
run: |
xmake run exercise00
xmake run exercise01
xmake run exercise02
xmake run exercise03
xmake run exercise04
xmake run exercise05
xmake run exercise06
xmake run exercise07
xmake run exercise08