Skip to content

Commit

Permalink
#2 Merge pull request from a-lab-nagoya/astropenguin/issue1
Browse files Browse the repository at this point in the history
Add writing environment
  • Loading branch information
astropenguin committed Jul 10, 2023
2 parents d6d8625 + 07a1f2b commit 0b84e34
Show file tree
Hide file tree
Showing 5 changed files with 6,826 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "python-env-tutorial",
"image": "node:20.2",
"postCreateCommand": "npm install",
"customizations": {
"vscode": {
"extensions": [
"antfu.slidev",
"github.vscode-pull-request-github",
"mhutchie.git-graph",
"streetsidesoftware.code-spell-checker"
],
"settings": {
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"[markdown]": {
"editor.insertSpaces": true,
"editor.wordWrap": "on"
}
}
}
}
}
19 changes: 19 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
job:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: devcontainers/ci@v0.3
with:
runCmd: npx slidev build
Loading

0 comments on commit 0b84e34

Please sign in to comment.