Skip to content

gui の README を追加 #25

gui の README を追加

gui の README を追加 #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix: { dir: ['chapter05', 'chapter06', 'chapter07', 'chapter08', 'chapter09', 'chapter10', 'tetrust'] }
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ matrix.dir }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Tests
run: cargo test
- name: Clippy
run: cargo clippy