Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

start ci #1

Merged
merged 34 commits into from
Nov 15, 2023
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
2a03f3c
Create docker-image.yml
LuckyTurtleDev Nov 15, 2023
9ea785a
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
6ad7451
write stuff to output.txt; improve github warning
LuckyTurtleDev Nov 15, 2023
bffcb24
ipmrove loging
LuckyTurtleDev Nov 15, 2023
ad1d372
fix output
LuckyTurtleDev Nov 15, 2023
2f7c2f9
fix output agiani
LuckyTurtleDev Nov 15, 2023
1c074f5
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
a344b87
fix output again again
LuckyTurtleDev Nov 15, 2023
3c2da0e
revert to bffcb24c44ae6f720374673d3fd851f07e7df8ea ::set-output is de…
LuckyTurtleDev Nov 15, 2023
5ecfa58
eei
LuckyTurtleDev Nov 15, 2023
3aad6c5
cat
LuckyTurtleDev Nov 15, 2023
ed65686
fix output.txt path
LuckyTurtleDev Nov 15, 2023
7f273ff
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
e5788ce
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
ccbaaa8
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
2f06f61
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
dd95f6e
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
c655687
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
c2acfa6
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
422b98c
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
1ce97e0
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
ae2f1ae
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
1acf508
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
4ff082e
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
c73af5d
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
90a60df
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
3f45ca5
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
bf5c5d5
wirte directly to file
LuckyTurtleDev Nov 15, 2023
d7dc62c
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
1de788f
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
89e2fe0
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
7ea8c0a
Update docker-image.yml
LuckyTurtleDev Nov 15, 2023
539811a
Update main.rs
LuckyTurtleDev Nov 15, 2023
f3d026a
Create rust.yml
LuckyTurtleDev Nov 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Create rust.yml
LuckyTurtleDev authored Nov 15, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit f3d026a0b851c5733baa2fba5181f9d58523fcbd
32 changes: 32 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Rust

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
id: "rust-toolchain"
- uses: actions/cache@v3
with:
path: |
~/.cargo/git
~/.cargo/registry
target
key: "${{runner.os}} Rust ${{steps.rust-toolchain.outputs.cachekey}} Lock ${{hashFiles('Cargo.lock')}}"
- run: cargo test
env:
RUST_BACKTRACE: 1

rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --all -- --check