Skip to content

Commit

Permalink
Try hello-world
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Aug 23, 2024
1 parent eae5530 commit 681c1a0
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,4 @@ jobs:
name: Test
runs-on: windows-2022
steps:
- name: Download
run: |
curl -O https://download.sysinternals.com/files/Handle.zip
unzip -d handle Handle.zip
echo "$PWD/handle" >> $GITHUB_PATH
- name: Test
run: exit 1
- name: Debug
if: failure()
run: handle -accepteula
- run: ./test.sh
7 changes: 7 additions & 0 deletions foo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions foo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "foo"
version = "0.1.0"
edition = "2021"

[dependencies]
3 changes: 3 additions & 0 deletions foo/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
10 changes: 10 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

set -ex

cd foo

for run in {1..1000}; do
touch src/main.rs
cargo run
done

0 comments on commit 681c1a0

Please sign in to comment.